Okay, i have a simple button on my page (MyPage) which fades out the current div (fade 1) and fade in another one (fade 2). I have now realised that there might be chances t
Changing the window.location
will kill all scripts currently running in the browser.
Your only other solution is getting a page via AJAX
and run a callback function to execute when the content is loaded. Here is something to get you started.
Also, jQuery as a nice .ajax() method to easily perform AJAX
requests and associate callbacks to successful and failed requests.