.live() (deleted as of jQuery 1.9) is a method within the jQuery JavaScript framework which is used to attach an event handler for all elements matching the current selector, now and in the future, even if they do not exist at the time method is invoked.

learn more… | top users | synonyms

0
votes
2answers
48 views

How to know when a class changed/added to an HTML element?

I have a list that looks like this: <ul id="colors"> <li class="variant on">red</li> <li class="variant off">blue</li> <li class="variant off">white</li> ...
-4
votes
1answer
356 views

jquery .live function throwing error “Object [object Object] has no method 'live'” [closed]

I was trying to add a click event to a div Id in my project but it's throwing an error. I do not know why. Could some one please have a look at the code? HTML: <div id="container"> ...
0
votes
0answers
37 views

Context menu on element added with jquery

I have a context menu that is shown when right-click is triggered upon an element. This is the html <table> <tr ...
1
vote
3answers
57 views

click function does not work when changed to live or on

I have a function that uses ajax to load content throughout one of my sites. This works all good but at some parts because new content is brought in that has more links I need to make the click ...
-1
votes
2answers
65 views

load page into a div

When page load first time the page contents which are I load on Jquery.ready javascripts work perfect then when I use ajax to do some things and try to load page again javascript are not working on ...
-1
votes
3answers
692 views

TypeError: $(…).live is not a function

I have a problem with jquery 1.9.1 . I have searched it but these are not solved my problem. $('.sm2_expander').live('click', function() { ...
0
votes
0answers
55 views

jQuery change mask option based on keypress

I've been using the jQuery plugin to mask inputs and the field I'm trying to mask can either be a positive or negative value. So I created the field which allowed me to enter a negative value -25.32 ...
-1
votes
4answers
43 views

jQuery doesn't recognize :not(.className) filtering

When I dynamically add a class to an element, pseudo filtering doesn't recognize that class. This problem occurs when I use on() function, but everything is fine when I use live() ...
0
votes
3answers
50 views

Bind color picker plugin to click function

I'm trying to bind a jQuery plugin called miniColors ( http://bit.ly/Mq88mU ) to a click function I have, to add slides to a slide manager. I can't seem to figure out how to bind it right. Any ideas? ...
-1
votes
1answer
116 views

jquery live() trigger multiple times on each keydown? [closed]

when enter key is pressed it triggers once and second time twice,3rd time thrice and so on.... the ajax code is triggered multiple times as i have mentioned above Here is my code Please Reply me as ...
4
votes
3answers
100 views

What is the Replacement for jQuery.live

What should be the proper replacement for the jQuery.live(). I know jQuery.on() does the same thing but in case of jQuery.on() we have to specify the parent in order to make it work. Suppose i have ...
1
vote
1answer
225 views

jQuery 1.9 migrate live() to on() with multiple events not working

I have upgrade jquery to version 1.9.1, but the live() function is broken. I am now migrating live() to on() as descripted in this post. But this senario is not working. May be because it's targeting ...
0
votes
2answers
289 views

JavaScript / Jquery click event on IE8 is not working properly

I'm a newbie in web development. I'm having some issues on the buttons of my project. This line of code is working in all web browsers, except for IE8: $("#SampleBtn").live("click", function(){ ...
0
votes
4answers
51 views

jquery function in function variable not recongnized

i have this two functions (function in function) but the second one is not firing because it seems that indxc can not catch the id from the parent function. $(".guddi").live('click',function(){ ...
-1
votes
1answer
75 views

jQuery Checkbox event handling with .live()

Newbie to jQuery here. I have a check box that is dynamically added through the following code in jQuery: .html("<input type='checkbox' class='checkbox' value='7.5'>"); I want to be able to ...
-2
votes
1answer
116 views

The click event doesn't work in IE7 (using jQuery 1.7.2) [closed]

i got a problem using this code,this works perfectly in ie8 and higher,how can i fix this.I have already used .live and .on $("#header .menu .submenu.submenu-hotels .index a").click(function(e){ ...
1
vote
1answer
37 views

on() doesn't work with live data using jQuery, how to?

i have some dynamic data that gets appended to a list and any links in that data doesnt seem to work. i am using jquery 1.8.3 and on() should account for the live method, i think ...
1
vote
2answers
337 views

jquery live click with onclick server side

I am developing ASP.Net Web Application using jquery and I'm new in a jquery , I've a grid view "grdVwFirst" with expand button,after clicking on expand a dialogue with another grid view ...
0
votes
9answers
146 views

jQuery .live, click, bind etc which to use [duplicate]

This may sound "silly" but I have a simple calendar that is loaded onto the page like this: jQuery('#calendar .show_hide').load('plugins/calendar.html', function(){ // do something // }); That is ...
0
votes
3answers
48 views

Using jQuery delegate() to replace live()

I currently am creating content using jQuery. Live(), according to the jQuery API Description: Attach an event handler for all elements which match the current selector, now and in the future.. I ...
4
votes
1answer
75 views

How does jQuery.on() work?

I have not seen the source of this function, but I wonder, does it work like this: Selects element(s) by their selecotrs Delegates the provided event-handlers to them Runs a setInterval on that ...
0
votes
2answers
30 views

Multiple live bindings to a dom in jquery

Assuming to a dom element i have more than 2 live bindings (or delegate for that matter). (one or more could be from jquery plugins i use), which one gets preference. $(selector).live('click', ...
1
vote
2answers
34 views

Dynamic jQuery on click function?

In one of my search bars, upon keyup a div is loaded with the contents of another file. <input type='text' value='search' id='search' /> My JS code for this task is: ...
0
votes
0answers
62 views

jQuery getting “live” work between datatables and screwDefaultButtons

I've implemented "jQuery screwDefaultButtons" plugin into "Datatables". Datatables seems to load doms dynamically. So, in the first page I'm getting screwDefaultButtons works. But when I go to page ...
0
votes
0answers
54 views

JQuery live update on form and it's values

I have a form which is being submitted with ajax - Now when this form is submitted a number from a specific div is taken and to that number is added +1. Also when this form is submitted i change it's ...
-1
votes
2answers
40 views

Multiple links with the same class

I have multiple links using the same class on my page : <a class="tweetAnswer" rel="link1" href="">Answer</a> I'm trying to show an alert with jQuery when someone clicks on one of ...
3
votes
5answers
128 views

JQuery / Live is deprecated, well okay… But is not replaced

On is not working as a replacement for live; as the new ON is NOT working for future elements. No problems in my implementations; I'm used to use live and I definitely know when something works or not ...
0
votes
1answer
88 views

jQuery - dynamically binding a CSS class on an attr?

I have a table rows with a unique, where each row has a unique ID. However, sometimes that table is dynamically generated through AJAX. I also have a button that is meant to update a particular table ...
1
vote
3answers
86 views

jquery add listener to appended content

I have some jQuery code like this: $("#add").click(function(event){ $("#list").append('<a class="remove" href="#">x</a>'); return false; }); $('.remove').live('click', ...
0
votes
1answer
538 views

jQuery - how to use the “on()” method instead of “live()”?

I used live() for generated pages and frames. But in jQuery 1.9 this function is deprecated and does not work. I use on() instead of live() but this method works for one time, and does not work in ...
2
votes
1answer
132 views

jQuery on() or live

I'm trying to use the code below. It works fine on Firefox as expected but when I try IE or Chrome, the on or live methods don't fire. Can anybody help me about it? ...
0
votes
2answers
88 views

jQuery on() method with click and element class name triggerred anywhere on the page

Recently I've upgraded jQuery to 1.9 and my main problem now is to convert all live() methods to on(). I've succeeded in a few situation, but I have some other methods that just behave very strange. ...
7
votes
3answers
4k views

jquery 1.9.0 live function?

There is no live() function in jquery 1.9.0, but jquery.unobtrusive.ajax.js is already use this function. Should I use older version of jquery or another way?
0
votes
2answers
227 views

How to reference dynamically added element after DOM loaded without a need to act on any events?

I know there is .on and .live (deprecated) available from JQuery, but those assume you want to attach event handlers to one ore more events of the dynamically added element which I don't. I just need ...
1
vote
1answer
127 views

jquery bind an ajax loaded element

I am trying to use a rating plugin which has the following bind command. $("#rateit10b").bind('over', function (event, value) { $(this).attr('title', tooltipvalues[value - 1]); }); The html ...
0
votes
2answers
94 views

jQuery live and prop and change

I need to fire an event when the 'checked' state of any one of several checkboxes is changed, and to do this not by listening for the click. Why? It looks like this: BUILD YOUR SUNDAE! All ...
0
votes
2answers
140 views

How to use live() in ajax success callback

I'm working on a wordpress site which display articles using AJAX. I added some jquery code in the success callback. One of my needs is to display an image on mouse over. All my code works except the ...
1
vote
3answers
4k views

How to replace “live” from jQuery 1.8.3 to jQuery 1.9? [duplicate]

My web framework automatically updated my jQuery script to the current last version, the 1.9. Now all my: $(".myclass").live("click", function() {... don't work anymore. I mostly used it with some ...
1
vote
5answers
97 views

jQuery - Converting .live to .on click [duplicate]

Possible Duplicate: jQuery 1.7 - Turning live() into on() .live() vs .on() method I have the following code (which I've simplified for this) which worked fine alongside jquery-1.7. ...
1
vote
4answers
105 views

jQuery hover on not working live works

I was having problems with an $('.myElement').on('hover',function({...}); After trying .on('hover' , .hover(), which both didn't work, I tried .live('hover',). .live('hover',) worked.. however, ...
0
votes
2answers
64 views

JQuery Combine Each with Live

I have a couple of divs that are updated with Ajax calls (It's MVC, but the HTML looks something like this when it's done): <div class="progresswrapper running" id = ...
0
votes
5answers
937 views

jquery .live() and .append()

So I'm currently using .append() to add a feature to all of the posts on a webpage, but when additional posts are loaded on the page, the appended features aren't included in the new content — I'm ...
1
vote
2answers
46 views

How to reference $(this) when using on()

I'm using on() to mimic live() and can't for the life of me figure out how to properly reference $(this) so it references the selector I passed in. Here's the code, $(this) returns "body" instead of ...
0
votes
2answers
98 views

Remove parent div if duplicate words

I'm using a service called Embedly to style my RSS feeds from Google Feedburner. I have an example code over her: JsFiddle If you look closely you will see the source (CNN) at the end of every title. ...
2
votes
3answers
66 views

.live() jQuery - how to change my events

How do i change these events to .live() event handler? I thought I could just change $(document).ready(function() ...to.... $(document).live(function() as well as .keydown and .data to .live but i ...
6
votes
1answer
97 views

stopPropagation and live() method. What am I missing?

I've read jQuery doc and I know that there's no point in using stopPropagation() if I use live() to bind event to elements, as the event with live() binds to document node so the event has already ...
0
votes
2answers
354 views

jQuery Datepicker only firing if I first click on another input field

I'm having some strange behaviour when using the datepicker. When I load the page, and directly click on the datepicker input, nothing happens. When I click again, nothing happens. But when I click on ...
0
votes
3answers
29 views

Stopping jQuery live from affecting chlidren

I have a DOM structure as follows: <div class="hotspot"> <div class="hotspot_inner"> <div class="hotspot_info"> <div class="inner_box"> ...
0
votes
2answers
44 views

Div bind/live activating all methods

I have some divs being created dynamically and I'm using bind/live (tried both, same results) to add a click function. However, it is returning all the divs with the same class. Example; I have 3 ...
1
vote
2answers
45 views

jQuery .live() - Whats wrong with this?

The past 3 days I've tried to get this simple example to work but whatever I try I just can't seem to understand where I'm going wrong... HTML: <input type="text" id="textEntry" /> ...

1 2 3 4 5 10