Performance difference between jQuery's .live('click', fn) and .click(fn)

Posted by Mike on Stack Overflow See other posts from Stack Overflow or by Mike
Published on 2009-09-02T14:55:48Z Indexed on 2010/05/26 16:01 UTC
Read the original article Hit count: 268

Filed under:
|
|

I love the new live event in jQuery 1.3. The question I have is the performance of this event. I know the advantages of using live over click/bind('click') but is there a performance hit for using it over click/bind('click')?

If not, why would you ever use click or bind('click')?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery