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.
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.
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.
Thank you!