Tagged Questions

5
votes
5answers
357 views

Which JavaScript libraries have event delegation?

I'd like to try out a new JavaScript library. Having used (and loved) jQuery 1.3's "Live" events, I'd prefer the next library I try to have event delegation built in to the event s …
2
votes
4answers
199 views

Performance overhead of event listeners on CSS classes used in JQuery code

If my markup looks like this: <button id="button-1" class="nice"> <button id="button-2" class="nice"> <button id="button-3" class="nice"> and I define the foll …
2
votes
4answers
91 views

Is there a rule of thumb for when to use event delegation vs event handling in JQuery?

I'm confused about when you should use event delegation as opposed to out-of-the-box JQuery event handling. I'm always tempted to use an event handler because it's so easy in JQue …
1
vote
6answers
350 views

jQuery Event Delegation + Child Targeting Help

I display a bunch of posts from users on a page. I have the main parent div with the class name 'posts' and each post is outputted in a div with class name 'row' inside of it. So t …
0
votes
6answers
137 views

What is DOM Event delegation?

Update Can anyone please explain event delegation in JavaScript and how is it useful? Original: Delegation in programming. Can anyone please explain delegation and how is it use …
0
votes
2answers
153 views

Problem using jquery UI droppable and livequery!

I have this code for some elements to be dropped var $tab_items = $("ul:first li",$tabs).droppable{ tolerance: 'touch' ,.... and it´s work ok, but the problem it´s when I load an …
0
votes
2answers
39 views

Correct syntax for defining an event delegator

Normally you write a handler for a button click like this: $(document).ready(function() { $("button").click(function() { doSomething(); }); }); But in the case of …