Why doesn't jQuery allow click(), bind() and similar functions to work "live" automatically?
Why do I need to use live("click", functi... if I want to make it work "live", instead of click(function()...? Does live takes more resources?
|
Why doesn't jQuery allow click(), bind() and similar functions to work "live" automatically? Why do I need to use |
||||
|
Funny you should ask that. Someone wrote an entire article answering your question:
The outlined summary is:
|
|||||||
|
$.live()method operates on changes to thedocument, so the more specific you are (and not each and every "event"), the more "efficient" the event handling you have in the end. – Jared Farrish Dec 31 '11 at 2:55.live()is event delegation. That would make every event on the page be tested against every selector provided for that event. That would be bad, and that's why.live()is bad (and deprecated). – squint Dec 31 '11 at 2:56