Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I saw on the jquery documentation that live() is deprecated. Is there a direct replacement function?

share|improve this question

3 Answers

up vote 14 down vote accepted

Of course:

http://api.jquery.com/on/

http://api.jquery.com/off/

The page for live() shows how to convert to on():

http://api.jquery.com/live/

share|improve this answer

$(document).on('event', 'selector', function() {}); replaces .live().

$('selector').on('event', 'selector', function() {}); replaces .delegate().

$('selector').on('event', function() {}); replaces .bind().

share|improve this answer
+1 for brevity. – c69 Feb 29 '12 at 17:15
saved my day. thank you – sagivo Jan 21 at 23:16
$('rootselector').on('click', 'selector', function(){
});

taken from http://api.jquery.com/on/

share|improve this answer

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.