I have two pages, on the first page after an event happens I change the location of the page by using:
window.location.href = "/pageb";
On the second page, I have a document ready event that doesn't fire when coming from the page above. The ready event works when the page is browsed to normally.
$(document).ready(function() {
alert('ready');
});
I am using the google ajax cdn to include jquery on my pages. I'm stumped...