Page 1 of 1

page onload event not working as expected

Posted: Fri Dec 27, 2013 3:12 pm
by Jason Baird

This is what is happening...

Page1 has an onLoad event that runs a function. When I first navigate to Page1 it runs fine. If I go to Page2 then return to Page1, the onload event does not run.


page onload event not working as expected

Posted: Fri Dec 27, 2013 7:50 pm
by maxkatz

If the page (page 1) is already loaded into the DOM (browser), the load event won't fire again. You can use page show event.


page onload event not working as expected

Posted: Fri Dec 27, 2013 7:54 pm
by Jason Baird

Thank you!