I have a script that redirects the user to another page. I want to load some content into a div on the new page after the new page has fully loaded. How can I do this. The f
window.location = '#/MyPage'; setTimeout(function() { //MyCode To Run After PageLoad });