Tagged Questions

`.live()` is a function within jQuery JS framework helping to attach events to all matched elements, even if they do not exist at the time event is attached/

learn more… | top users | synonyms

19
votes
8answers
5k views

Bind jQuery UI autocomplete using .live()

I've searched everywhere, but I can't seem to find any help... I have some textboxes that are created dynamically via JS, so I need to bind all of their classes to an autocomplete. As a result, I ...
16
votes
1answer
363 views

jQuery 1.7 - Turning live() into on()

My application has dynamically added Dropdowns. The user can add as many as they need to. I was traditionally using jQuery's live() method to detect when one of these Dropdowns was change()ed: ...
11
votes
4answers
7k views

Fancybox, getting Fancybox to bind using LIVE() to items being loaded onto the page after load

I have a page that loads and after it loads, it pulls in a list of LIs to populate a news feed. <li><a href="/url/" class="quickview">quick view</a></li> <li><a ...
10
votes
2answers
7k views

Using jQuery .live with toggle event

My code is working, but requiring me to click twice to active my chaining (once for the click event, and once for the toggle event.) What can I do to make it so I only have to click once so that the ...
9
votes
5answers
6k views

jQuery live('click') firing for right-click

I've noticed a strange behaviour of the live() function in jQuery: <a href="#" id="normal">normal</a> <a href="#" id="live">live</a> $('#normal').click(clickHandler); ...
8
votes
3answers
863 views

How to use jQuery live() for img onload event?

I want to run some code when an image is loaded. Also, I'd like to do it unobtrusively (not inline). More specifically, I want to use jQuery's live() function so it will happen for any dynamically ...
8
votes
3answers
1k views

jQuery performance: $('#selector').live() vs manually bind (when working with ajax requests)

When working with content loaded asynchronously is there any difference from a performance point of view between: // .live() $('#mybutton').live('click', function(e){ doSomething(); }); and ...
7
votes
3answers
291 views

What's the difference between jQuery .live() and .on()

I see there's a new method .on() in jQuery 1.7 that replaces the .live() in earlier versions. I'm interested to know what the difference is between them and what the benefits are of using the newer ...
5
votes
2answers
85 views

jQuery Traversing + Live Event Handlers

I'm having some issues with attaching live event handlers to particular rows. What I have and what I'm after: I have some HTML that will be generated dynamically after page load as follows: ...
5
votes
3answers
3k views

jQuery live with the ready or load event

I'm using the jQuery Tools tooltip plugin, which is initialized with $('selector').tooltip(). I'd like to call this on any current or future .tooltipper element. I figured that the following would ...
4
votes
2answers
57 views

jQuery flot, Live plotting from SQL Server

I have a MS SQL Server which has data being constantly fed to it. I want to make an ASP.NET Webapp or Webpage that can plot the data and update live. Through research I found that jQuery and Flot ...
4
votes
2answers
143 views

live('click') and performance

I have a grid and there is a column which contains <a> anchor tag with some additional information in <data-..> tag and has a class name <class='myspeciallink'>. And in my ...
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?
4
votes
1answer
180 views

jQuery: Preventing and then not preventing form submit using the “live” method

I am writing a form to be inserted in clients' webpages that is to be submitted with an AJAX request for processing. Then, depending on the client's settings, I want to either display a "Form ...
4
votes
2answers
161 views

What is the difference between .click(…) and .live('click', …)?

Consider the following code: HTML: <div id='button' class='enabled'>Press here</div> <div id='log'></div> CSS: #button { width: 65px; height: 25px; ...
4
votes
3answers
4k views

jQuery Tools Overlay & jQuery.live event

How to get this work with jQuery.live? $("a[rel]").overlay({ mask: '#3B5872', effect: 'apple', api: true, onBeforeLoad: function () { var wrap = ...
4
votes
3answers
3k views

Use jQuery Fancybox(lightbox type dialog) with dynamically loaded links

I'm trying to bind Fancy box links so that when the new links are created it will still work. I've seen a few other question on here but not really answered. This is what I'm trying to do. ...
4
votes
1answer
245 views

JQuery: Live <a> tag partially working second time around

I have the following jquery code: $("a[id*='Add_']").live('click', function() { //Get parentID to add to. var parentID = $(this).attr('id').substring(4); //Get div. var div = ...
4
votes
1answer
1k views

jquery live event gets executed twice

I am loading content into a page with ajax that will have live click events attached to them. It seems like the first time I load this content everything works as expected. If I load this again, ...
4
votes
2answers
3k views

jQuery $(element).each function doesn't work on newly added elements

I am using .each function to iterate trough list of elements. I am having initial list of matched elements and .each works great on these. But I can add new elements via AJAX method... .each don't ...
4
votes
3answers
927 views

jQuery live doesn't appear to bind click event

The dynamically added links (classnames .divToggle and .removeDiv) only function if clicked twice the first time. What is preventing them from working properly right away? ...
3
votes
3answers
50 views

jQuery: live() and delegate()

I'm binding a click event to a div element, which is created after clicking on a button. I'm using .live() and this is working. I've heard, that I should not use .live, but .delegate(). So I've tried ...
3
votes
3answers
112 views

jQuery search text in elements as SQL query LIKE?

Hi is there anyway to search text in dom, as we do for SQL query LIKE? i mean, i have. <ul> <li>ab</li> <li>abrecot</li> <li>abus</li> ...
3
votes
5answers
198 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
189 views

jQuery global custom events and live() doesn't seem to work

I'm struggling to get to grips with jQuery live() when combined with global custom events. I've jsfiddled (and simplified) an example from jQuery docs itself. Using bind() works: ...
3
votes
4answers
175 views

can jQuery.live stop the browser following a link?

I'm trying to use $().live to enhance a website but it insists on following the href. The following is very close to the real code (a.class, span inside a). <a class="test" ...
3
votes
3answers
358 views

jQuery - run a function when DOM changes

I've been using livequery so far which works, but it makes the page browsing seem really slow. So I'm trying to find a alternative solution for this. I'm attaching a function that runs some ajax on ...
3
votes
2answers
132 views

Is jQuery .live() more memory intensive?

Is jQuery .live() more memory intensive than a simple .click() .hover() or .keyup()? I imagine it would be but to what degree?
3
votes
2answers
527 views

Making JEditable work on new elements (.live)

I'm using the JEditable plugin for in-place editing. I have a "setup" function which calls .editable() on all the relevant classes. The problem is, I have newly appended elements which I'd like to ...
3
votes
3answers
242 views

Drawbacks to always using live() instead of bind() for unique dom elements?

When writing jQuery binding events, I typically use the bind() aliases (click(), submit(), etc). But, the more I use dynamically generated content, the more I find its ambiguous as to when bind() ...
3
votes
2answers
347 views

In jQuery, how can I monitor a dynamically populated element (AJAX), without basing it on an event?

I have the following markup on page load: <select name="sel_billing_address"></select> After page load that select is then populated by some AJAX to be something along the lines of: ...
3
votes
2answers
1k views

jQuery focusin and focusout live events are not firing

jQuery Version: 1.4.1 I am attempting to write a simple watermark type plugin and I want to take advantage of live events since not all of the elements I need to use it on will exist during the page ...
3
votes
3answers
2k views

Facebook tags dont render when generated dynamically using Jquery

To give you a simple use case - on my website, I display the comments posted by the facebook users. For each comment I display the facebook users photo using the fb:profile-pic tag and a fb like ...
3
votes
1answer
130 views

Unbind event that was binded with .live() jQuery

I have the following code: $('#form1').live('submit.check', function() { //code... }); Now when I try the following: $('#form1').unbind('submit.check'); that event it still bound to the ...
3
votes
2answers
446 views

Using jQuery's live() function on calling a plugin?

So I have a plugin - jScrollPane - http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html - which is awesome, but, I want to apply it to an Ajax-generated div. How would I use ...
3
votes
1answer
70 views

How do you handle large repeated UI elements with JQuery

Here's the situation: You have a very complex UI element that is repeated in a list. Each has a menu on it, buttons, it hides and shows subelements, buttons for switch it's state, etc, etc. The ...
3
votes
1answer
141 views

How to live a plugin in jQuery?

Is it possible to add a live function on a plugin? The jPikcer plugin wont work I create it from a .live('click', function(e) Example: $('.Multiple').jPicker(); Thanks, Gino
3
votes
1answer
887 views

jQuery UI draggable() and resizable()

I want to write the draggable() and resizable() code in such a way that all future elements with a particular class will inherit those plugins without calling them again. ...
3
votes
1answer
437 views

jquery live tabIndex

I have a jQuery statement that's working fine. How would I re-write it in .live? $(document).ready(function() { $(':input:enabled:visible, a:enabled:visible, span.ValidatorClass').each ...
3
votes
2answers
2k views

How to use jQuery .live() with ajax

Currently I am using John Resig's LiveQuery plugin/function - http://ejohn.org/blog/jquery-livesearch/ - to allow users to sort through a long unordered-list of list-items. The code is as follows: ...
3
votes
3answers
1k views

jQuery click event behaves differently with live function in Firefox

Using the event click with live function leads to strange behavior when using Firefox*. With live in Firefox, click is triggered when right-clicking also! The same does not happen in Internet Explorer ...
2
votes
2answers
42 views

Jquery IE bizzare issue Possible Wrap Issue?

I have a custom hover tool tip for a new site. It works great until we noticed it doesn't go away in IE I think it has to do with the combination of the live listener to mouseover and the .wrap() ...
2
votes
1answer
52 views

Getting “Change” event for a text field who's contents is changed by jQuery

I've made some pretty checkboxes using some pretty simple jQuery HTML <span class="iconElement checkBox" id="update_Check"></span> <input type="text" id="update" name="update" ...
2
votes
4answers
70 views

Why does not jQuery.live function work with static elements?

I have a dynamic HTML table, where I can add and remove rows. Each row contains a button that has a class removeRow. In my JavaScript, I have: $('button.removeRow').live("click", function () { ...
2
votes
5answers
126 views

How can I have live info on a page without refreshing?

Facebook has introduced a ticker which shows live news scrolling down. How can I have this same time of functionality on my site? I don't care to use an iframe and have it refresh because it will A ...
2
votes
3answers
74 views

jQuery; test for events registered to a given object with .live()

I've tried the answer suggested here, which follows with nearly all answers to similar/duplicate questions. Checking .data('events') simply isn't working, returning undefined for objects I had ...
2
votes
1answer
114 views

Using jQuery load() on dynamic content

I'm trying to load content into a DIV with jQuery load() but it is not working if the link that calls the function is generated after page load. var ajax_load = "<img class='loading' ...
2
votes
3answers
87 views

Jquery “live” event not firing

I'm having trouble with the live event which is necessary as I am dynamically adding elements to a page. A regular click event works fine. I want to know why the live click event is failing. There ...
2
votes
3answers
69 views

jquery .not() is not working with live()

I am adding some dom with ajax in a page where i am trying to excluding seleted result by .not() but its not working for me. Here is a simple example: HTML: <div class="list-item"> ...
2
votes
1answer
114 views

How to serialize a form with dynamically added inputs using jQuery?

I've read through a lot of questions addressing similar question but I can't get a grip on it, yet. I have a simple HTML form just like <form id="edit-items" name="edit-items" ...

1 2 3 4 5 6