Tagged Questions

16
votes
4answers
6k views

How to stop event bubbling with jquery live?

I am trying to stop some events but stopPropagation does not work with "live" so I am not sure what to do. I found this on their site. Live events do not bubble in the traditional manner and ...
7
votes
1answer
185 views

How many elements does it take for event delegation to become worthwhile?

Reading another SO question about jQuery performance, I started thinking about the point when it becomes worth using event delegation rather than binding to elements individually. I was thinking ...
5
votes
2answers
87 views

jquery event delegation variable scope with consecutive calls

With event delegation in jQuery 1.6, you can respond to events that have bubbled up to a common parent. A sample implementation is like this: (function($){ $.fn.myeventhandler = function () { ...
5
votes
2answers
48 views

Issue regarding live event

I was just reading http://api.jquery.com/event.stopPropagation/ Since the .live() method handles events once they have propagated to the top of the document, it is not possible to stop ...
4
votes
1answer
62 views

event delegation vs direct binding when adding complex elements to a page

I have some markup like this (classes are just for explication): <ol id="root" class="sortable"> <li> <header class="show-after-collapse">Top-Line Info</header> ...
4
votes
4answers
109 views

what is behind of delegate() and live() method?

What is behind of delegate() and live() methods in jQuery that give them the ability of working for current and future elements within the page?
3
votes
5answers
199 views

difference between jQuery.live and jQuery.delegate

I have read some post about why do not use jQuery.live() and I want to check if I got it:) When I call $("body").delegate('element','click', function); Is it the same as $(element).live('click', ...
3
votes
2answers
197 views

Event Delegation in jQuery 1.4

I've got the following code: $("ul.relatedAlbums li").hover(function(){ $(this).css({fontWeight:"bold"}); }, function(){ $(this).css({fontWeight:"normal"}); }); I've heard good things about ...
3
votes
1answer
1k views

Customising event delegates in the jQuery validation plug-in

I am currently setting up the jQuery validation plug-in for use in our project. By default, there are some events automatically set up for handling. I.e. focus in/out, key up events on all inputs ...
3
votes
4answers
179 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 JQuery: For example: ...
2
votes
4answers
1k 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 following jQuery: ...
2
votes
6answers
1k 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 there's a whole lot ...
1
vote
4answers
48 views

Neither .live(), .delegate() or .on() work for forms loaded dynamically to the page

I have a page with infinite scroll. The ajax functionality works fine for forms existing on the page when it initially loads, but doesn't work for forms loaded from the inifinite scroll ajax feature. ...
1
vote
5answers
65 views

Jquery - Bind delegate to all “a” tags

i try to block the jq click() when you click on an link in a div. HTML <div id="all"> <div id="test"> <a href="http://google.de">google</a> </div> ...
1
vote
1answer
229 views

event delegation with jQuery 1.3.2

I'm stuck using jQuery 1.3.2 at the moment and I'm just beginning to understand event delegation in general. But I can't seem to get any sort of event delegation to work on this code. I have a ul ...
1
vote
1answer
483 views

Binding jQuery handlers during the event capture phase (not event bubbling)

I'm looking to implement event delegation on blur/focus events, in a similar way to that suggested on quirksmode. As explained in TFA, blur and focus events don't bubble, so you can't use event ...
1
vote
4answers
188 views

Simple click event delegation not working

I have a div <div class="myDiv"> <a href="#" class="myLink">somelink</a> <div class="anotherDiv">somediv</div> </div> Now, using event delegation and the ...
0
votes
2answers
71 views

JavaScript Event Delegation without an actual event?

Hope my title is not too confusing. Please let me know if there is a better way to title my problem.I have jQuery function applying background-color to the odd rows in a table and on hover change the ...
0
votes
1answer
190 views

jQuery delegate performance on the click event on large lists - slows down if you dynamically add more elements?

I have a visual list of items like this: http://jsfiddle.net/viatropos/XCe3T/1/ In the real app, I'm only loading 200 total items. But the problem is the click event takes almost one second to call ...
0
votes
1answer
258 views

Attaching an event to CPagination change in Yii AFTER new page has been rendered

this is probably a newbie question so i hope it will be easy to answer!! i have been struggling for nearly a week with this.. please any help is much appreciated. I have a CListView and i am using ...
0
votes
2answers
402 views

jquery undelegate click event after event has completed

I have a click event that animates in some AJAX content onto a page. Once this content has been revealed and a user clicks the same link that activated the process i now want to reverse the process ...
0
votes
2answers
584 views

jQuery double event fire after post/get

ok i've wracked my brain and others to figure out why this is happening in IE and latest version of FF. It works in chrome. i am but a novice developer and recently started using jquery. so i dont ...
0
votes
1answer
136 views

Automatically initialize rich text editor on top of all textarea's, including ones that are loaded via ajax

I'm developing an ajax heavy web app, and would like to have textarea's (with class="ui-richtext") automatically initialize TinyMCE. This is easy for textarea's that are loaded normally, but how ...
0
votes
2answers
1k 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 another button by ajax ...
0
votes
2answers
74 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 an event delegator, ...