I have some links in the homepage.
When any of the links are clicked, the new page is being shown. But, when we click the link, document.ready is not being called, so I have to either refresh or press enter on the address bar or copy address bar url and open in new window.
What to do so that when links clicked, document.ready will be called ?
Please let me know if I am not clear.
Some guys want me to put code here, so look at the below code:
$(document).ready(function(){
console.log("doc ready");
});
This console is not being called. Thanks.