1
vote
0answers
18 views

jQuery UI draggbale delegation

I'm trying to delegete draggable event with jQuery.on(). It work well if you dragging elements using mouse because I use mouseover to initialize draggable(see fiddle). But there is no mouseover event ...
0
votes
0answers
43 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
1answer
152 views

Ignore child elements using jQuery event delegation

I am using the on method to delegate a click event to injected divs. These injected divs will have child divs as well that are positioned outside of their parent div. I am looking to ignore the click ...
1
vote
0answers
152 views

Google Closure event delegation a'la jQuery live/on

I need to delegate event to newly created elements, I need to attach handler to their creation event. Something similar to: onCreate I do not want to bind the event to the element after the creation ...
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", ...
0
votes
1answer
943 views

jQuery 1.7.1 $(document).on delegation does not work with selector on disabled element

My HTML (not dynamic) looks like this: <select id="domain" class="marketplace"> <option>United States</option> ... </select> This works: $(document).ready(function() { ...
2
votes
1answer
498 views

jQuery Mobile .delegate( ) not triggered

I'm quite new to jQuery and I'm struggling a bit on an issue related to delegation. In my code I have a dynamic page loaded by: $("#results").delegate('li', 'click', function(evt){ var ...
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(){ ...
4
votes
4answers
304 views

What does delegation do versus a plain on('click',…)?

What is the different in performance and the handling of these two different jQuery statements: Number One: $('#selector1, #selector2, .class1').on('click', function () { //stuff }); ...
1
vote
2answers
251 views

.delegate img src= and fading

I have this function. $('.anythingSlider').delegate('img','click', function(){ $('#largeImage').attr('src',$(this).attr('data-image')); }); I would like to have the img fade out/in when the ...
1
vote
2answers
1k views

Do hover events bubble?

My parent DIV will have many clickable children, so using event delegation I'm trying to capture both the childrens click and hover events on the parent DIV as they bubble up. Now the click event ...
3
votes
1answer
495 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 ... ...
1
vote
3answers
3k views

jQuery's delegate() does not bind events for AJAX loaded content

I want to use jQuery's .delegate() method as I've read it performs much better than .live(). However, when I use .delegate() it doesn't bind events to the ajax loaded content. Can anyone help me get ...
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
582 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() ...
1
vote
1answer
289 views

jQuery's delegate() not running properly in Safari, works fine in all other browsers

I'm working on a JavaScript-based banner for a client and have hit a wall. The banner runs fine in Chrome, Firefox, IE7 and 8. Safari, however, allows the user to close the banner once and open it ...
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
505 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
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 ...