[Live Query] takes a normal jQuery selector and persists it, in real time, across the whole DOM. This means that you can set one query (and without ever having to re-call it, or re-initialize it) its effects will be felt everywhere: Just like CSS. This is a really important distinction, and I'm happy that it was able to be done with virtually no speed-hit overhead.The 'lively-ness' of the binding is indeed interesting. The plugin checks every 20 milliseconds to see if any DOM manipulation has happened via other jQuery calls. If a jQuery action modified the DOM, then the live bindings are re-evaluated. This implies that DOM manipulation made outside of jQuery will not trigger the re-evaluation. This is really close to having a truly fluid (and live), cross-browser mechanism for applying behaviors to Elements in an unobtrusive, css-like fashion.
InfoQ Homepage News JQuery Gains Live DOM Binding with Live Query Plugin
JQuery Gains Live DOM Binding with Live Query Plugin
This item in japanese
Community comments
Why not give a try to "jQuery live bind"?
by diyism diyism,
Why not give a try to "jQuery live bind"?
by diyism diyism,
Your message is awaiting moderation. Thank you for participating in the discussion.
You even could use it like this(bind an element before create it):
$.live_bind(".kkkk .ppp[title='333']:nth-child(3)", 'click', alr1);
$('.kkkk').append('<div class="ppp" title="333">hello</div>');
plugins.jquery.com/project/live_bind