Tagged Questions
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
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>
...
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
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
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 ...