im loading pages with ajax and also loading pages javascript code with it.
i wanted to know, if i remove page javascript code, which has jquery live bind event on it, will it kill the binding or do i still have to call $(this).die(); function?
jquery live bind event
jQuery(function($) {
$('.showNavLink').live('click', function() {
});
});
Ajax Page Flow
- home page is loaded
- home page javascript is loaded
- user requested to load new page (on click)
- removing home page code with javascript
- removing javascript code
- loading new page... (starts the cycle with first step).