I have two pages, on the first page after the event, the page location is changed using:
window.location.href = "/pageb";
On the second page, I have an event ready for the document that does not fire when I exit the page above. The finished event works when the page is viewed normally.
$(document).ready(function() {
alert('ready');
});
I am using google ajax cdn to include jquery in my pages. I'm at a dead end ...
source
share