I'm building a small test case in which I load a series of XML files based on the hash in the URL that contain HTML and script data. URL examples might be my.site/#index which would load index.xml, #page1 would load page1.xml etc.
The data in these XML files is added to the page when the file has loaded via ajax, and any content from the previous file dumped. The method for checking the hash value and loading the file is run at page load, and every time the window.hashchange event fires.
When a new file is loaded, all events are unbound from the main container using die()
I'm having issues with binding, unbinding and rebinding events. If the first file I load contains something like
$("#box").live("click", function()
{
alert("Clicked");
});
the event will function just fine. I then subsequently load another file with no script data, and the events from the initial file are unbound. If I then load the initial file once more, the events are not rebound.
Does anybody know of a solution for (re)binding events when a script is loaded in to the page, after a die() or unbind() call has been made?