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 ...
12
votes
2answers
173 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
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
63 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>
...
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
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:
...
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
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
572 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
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
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
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
137 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
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, ...