Tagged Questions

In JavaScript, event delegation is a concept of listening to specific events on some element (eg. the whole document) to catch these events being fired on any of the child elements, even the ones that did not exist when even was being attached. This happens thanks to the another concept called "event bubbling", which makes events to be visible by parent elements. Within every event handler it is possible to check what was the target element of the event.

learn more… | top users | synonyms

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 ...
12
votes
2answers
172 views

Selecting text behind another element with createEvent

I have a scenario where I have some text, which should be user-selectable. The problem is, that there's an UI overlay on top of it, which prevents selecting text by default. The logical way to keep ...
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 ...
5
votes
5answers
551 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 system. Wikipedia's ...
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
1answer
280 views

Event bubbling jQuery .delegate() or .live() after click event

I've tried so many different possibilities to achieve what I feel like should be a simple code execution. I am loading DOM objects from the server via .load(). One of the loaded items is an input text ...
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
64 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
3answers
63 views

Global Javascript link handler

Here's what I have: A web application that runs in a single HTML page (call it myapp.req), with content coming and going via AJAX The application can be entered externally with a link such as ...
1
vote
1answer
57 views

Event handling ideas

I have two classes extended from JPanels and both the panels have buttons which when clicked perform a common activity. What will be the best way to achieve this? Does event delegation enter here? ...
1
vote
1answer
228 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
3answers
132 views

How can I refactor this JavaScript code to avoid making functions in a loop?

I wrote the following code for a project that I'm working on: var clicky_tracking = [ ['related-searches', 'Related Searches'], ['related-stories', 'Related Stories'], ['more-videos', 'More ...
1
vote
1answer
1k views

MooTools - Programmatically fired events not working with event delegation

Would really appreciate if anyone can help me figure out why I am unable to fire events programmatically when using event delegation in MooTools (from the Element.Delegation class). There is a parent ...
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 ...
1
vote
6answers
570 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 useful?
1
vote
4answers
4k views

How do I register a javascript event handler to an element that hasn't been added to the page yet

I'm trying to build a greasemonkey script which will dynamically create tables of data based on user interaction with... other dynamically created tables of data. My problem is that I'm having to make ...
0
votes
2answers
55 views

Does ActionScript 3 have some sort of event delegation system?

I have a container with many images. Instead of adding a listener for click and other mouse events on each of the images, I would like to only listen for those events on the parent of the image. Is ...
0
votes
0answers
22 views

YUI3 event delegation not working in FF2

I am using YUI 3.3.0. Event delegation not working in FF2. Any clue ? Thanks in advance. container.delegate("click", function(e) { alert("hi"); //alerts except in FF2 },"td, li");
0
votes
3answers
49 views

Listen for events on certain element at window level - Javascript, no library

I want to listen for events on <p> elements at window or document level as there are too many such elements to attach an onclick event hander for each. This is what I've got: ...
0
votes
2answers
31 views

Triggering a method from one class to an other using a button in Android SDK

I'm sorry if this is asked too much but I couldn't find something clear enough. I'm developing a little game engine for android. I've already implemented a gamepad class to control the touch screen. ...
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
188 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
257 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
1answer
250 views

Android list tap event delegation

I have a list that uses a database to display some data. There are several operations that the user can perform on each list item and instead of implementing a context menu where the user uses a long ...
0
votes
1answer
125 views

Iphone Delegation

Hi I'm using the following to raise the keyboard, I have many view controllers that could also use it but my attempts to delegate it have failed. I definitely don't want to insert this into every ...
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
581 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
3answers
515 views

MooTools Event Delegation using HTML5 data attributes

Is it possible to have event delegation using the HTML5 data attributes in MooTools? The HTML structure I have is: ​<div id="parent"> <div>not selectable</div> <div ...
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
1answer
212 views

Observing events for elements with a certain class or that element's children using event delegation

I have a page with elements similar to this: <div id='things'> <div class='thing'> <div class='activator'> <span>Some text</span> ...
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, ...