0
votes
0answers
45 views

Delegate events best practices for web development

Here's a situation - i have an one-page web app with different sections and i load them asynchrously. And while im loading them in init method i delegate events with jQuery to a parent container. ...
0
votes
2answers
436 views

Are multiple elements each with an addEventListener allowed?

I would like the specified function to be called only if the correct button is clicked on. function callback(func){ func(); } The main function(s) and their results: Attempt A: ...
4
votes
1answer
338 views

click event listeners attached to document.body dont fire in iOS6?

Experiencing strange behaviour and non functioning event delegation in iOS6, the root of which is that if I simply attach an event handler to document.body, as so: ...
4
votes
2answers
3k views

Delegating events to a parent view in Backbone

My view, TuneBook, has several child views of type ClosedTune. I also have separate full page views for each tune, OpenTune. The same events are bound within ClosedTune and OpenTune, so I've designed ...
5
votes
3answers
143 views

Javascript prototype behavior

I have a method that will let me select the prototype object when creating a new object (copied from "Javascript: The Good Parts" book): Object.create = function(o) { var F = function() {}; ...
12
votes
4answers
2k views

jQuery .on() and .delegate() doesn't work on iPad

If you try this sample fiddle on PC, everything works. Whenever you try it on iPad, it won't do anything <div id="click">Click here</div> <script> $("body").on("click", "#click", ...
1
vote
1answer
137 views

Bubbling issue with delegated event on parent node with JavaScript

I'm having problems getting my event to bubble correctly I believe in a delegated event. I have some markup like: <div id="wrapper"> <!-- more HTML --> <div class="clear"> ...
5
votes
2answers
686 views

Javascript event delegation, handling parents of clicked elements?

http://jsfiddle.net/walkerneo/QqkkA/ I've seen many questions here either asking about or being answered with event delegation in javascript, but I've yet to see, however, how to use event delegation ...
1
vote
2answers
235 views

Can I improve jQuery performance by combining all events of same type into one handler?

I have a jQueryMobile site/app where performance is an issue. I am reading a lot about how it's smart not to bind too many separate handlers. So if you have a page with a lot of buttons , the advice ...
3
votes
1answer
199 views

I want to stop using OOP in javascript and use delegation instead

After dabbling with javascript for a while, I became progressively convinced that OOP is not the right way to go, or at least, not extensively. Having two or three levels of inheritance is ok, but ...
4
votes
4answers
107 views

jQuery delegateing inside div > divs > a also :(

html: <div id="a"> <a id="a0" href="#"></a> <div id="b"><a id="b0" href="#"></a><div> <div> jQuery: $('#a').delegate('a', 'click', function(){ ...
0
votes
1answer
215 views

web worker delegation (subworkers) not working

I can't seem to get the Web Worker delegation example from http://www.whatwg.org/specs/web-apps/current-work/complete/workers.html#delegation to work on Chrome, Firefox or Safari. Web ...
3
votes
1answer
498 views

delegate() in PrototypeJS

I am used to jQuery, which has a delegate() method. So let's say I have HTML like this: <div id="covers"> <a href="#"><img ... /></a> <a href="#"><img ... ...
0
votes
1answer
203 views

Using jQuery's .live/.bind to affect input created by a for loop

I have two arrays, one with input names, and one with the value to give each input. There are 7 inputs, so I made a loop to fill out each input with it's value, then make it so that the text will ...
1
vote
1answer
583 views

jQuery Event.Target Problem

I don´t know if I have forgotten how to do so or if it´s a bug, but I just can´t find the caller's reference in the "click" event using jQuery. I´m doing the following: $(document).ready(function() ...
4
votes
3answers
4k views

Stop propagation with jquery delegate/live function not working

Heres the problem html: <ul id="update-list"> <li class="update" onclick="window.location('some_url')"> <h2> some header </h2> <p> some paragraph </p> ...
1
vote
1answer
514 views

How to prevent delegated handlers on a parent without preventing default in jQuery?

Is there any way to prevent a click from an <a> triggering delegated click handlers on its parent, while allowing the the <a>'s default behavior to occur (navigating to the href). Here's ...
1
vote
1answer
311 views

innerHTML and event delegation

I have a containing div that has multiple divs within which is updated every 25ms using innerHTML (for performance reasons). I have tried using event delegation to capture events but nothing I seem to ...
1
vote
1answer
708 views

change event on a table fails in IE

I am using jQuery to capture a change event on a table. The table has many rows and each row has a few inputs boxes and a checkbox. To do this, I am using event delegation. I am capturing any ...