Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).
share|improve this question

3 Answers

up vote 2 down vote accepted

$.live is deprecated http://api.jquery.com/live/. But if you are using it, you should remove it. I'm assuming you're never refreshing the page. Just removing script tags doesn't undo everything that was done when the script was run.

The new way is

$(document).on('click', '.showNavLink', function() {});

When it's no longer needed

$(document).off('click', '.showNavLink');
share|improve this answer
Hmm.. did un replace off? – wirey Oct 24 '12 at 16:57
@wirey good catch, I use Ext-JS which calls it 'un' – Juan Mendes Oct 24 '12 at 16:58
1  
If you don't want the behavior to apply, yes, you do have to unbind it, otherwise, it will still happen. I'm not sure why you'd think you don't need to unbind in that case. In your original question, you're restricting the handler only to elements with class navLink so it wouldn't matter since you wouldn't have navLinks anymore? But you should still clean it up to conserve memory, and cleaning up after yourself is a good habit that will prevent bugs in the future – Juan Mendes Oct 24 '12 at 17:31
1  
@Basit You confused yourself :) Your question is about $.live which is event delegation. – Juan Mendes Nov 5 '12 at 15:57
1  
@Basit The event handler will not be removed automatically, it should get garbage collected if there aren't any cyclical references, but it's good form to remove the handlers yourself – Juan Mendes Nov 6 '12 at 15:08
show 13 more comments

Removing the Javascript source code won't remove the Javascript function objects that were created from that code.

You have to unbind the event handler to keep it from handling events.

share|improve this answer

Removing the element disassociates all the events of the corresponding elements.

Even when you remove the elements there might be memory leaks if you do not remove the events .. So it is better to explicitly call .die()

Also

    As of jQuery 1.7, use of .die() (and its complementary method, .live())
 is not recommended. Instead, use .off() to remove event handlers bound with .on()
share|improve this answer
The events do not get disassociated if you're using event delegation, which is what $.live uses. The event is attached to the entire document. Therefore, removing the elements that were affected by the handler will not remove the $.live event – Juan Mendes Oct 24 '12 at 17:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.