.live() function in jQuery attaches an event handler for all elements which match the current selector, now and in the future. It was deprecated in jQuery 1.7 and removed in jQuery 1.9.
Questions tagged [live]
1590 questions
292
votes
10 answers
jQuery 1.9 .live() is not a function
I recently updated jQuery from 1.8 to 2.1. I suddenly discovered that the .live() stops working.
I get the error TypeError: $(...).live is not a function.
Is there any method I can use in place of .live()?

ngplayground
- 20,365
- 36
- 94
- 173
161
votes
7 answers
jquery live hover
I'm using the following jquery code to show a contextual delete button only for table rows we are hovering with our mouse. This works but not for rows that have been added with js/ajax on the fly...
Is there a way to make this work with live…

Jorre
- 17,273
- 32
- 100
- 145
102
votes
4 answers
Jquery live() vs delegate()
I've read some posts here and elsewhere on the web about the differences between live() and delegate(). However I haven't found the answer I'm looking for (if this is a dupe please tell me).
I know that the difference between live and delegate is…

PeeHaa
- 71,436
- 58
- 190
- 262
80
votes
4 answers
jquery click doesn't work on ajax generated content
I am using $(".button").on("click", function(){ });
to click to a button which is on a container but then an ajax call is done and the content
gets updated with new stuff and then when i try to click .button it wont work... nothing will get…

stergosz
- 5,754
- 13
- 62
- 133
65
votes
10 answers
What is the difference between the bind and live methods in jQuery?
I'm curious to know the differences between the bind and live functions.
To me they seem to be almost identical.
I read the benefits of live/bind methods, but it didn't tell me about the differences...
Thanks!

Kevin Brown
- 12,602
- 34
- 95
- 155
60
votes
11 answers
jquery .live('click') vs .click()
I am wondering whether there are any circumstances where it would be better to use .click(function {...}); rather than .live('click', function {...});?
From what I gather the live option seems to be a better option and I am hence using it in almost…

kalpaitch
- 5,193
- 10
- 43
- 67
51
votes
4 answers
jQuery: live() vs delegate()
I'm using jQuery in my web application. While reading its documentation I read about live() and delegate(). Although they have explained both methods, I don't understand the exact difference between them. Also not sure about which method is ideal in…

Chinmayee G
- 7,947
- 2
- 31
- 41
51
votes
4 answers
.live() vs .bind()
I want to know the main difference between
.live() vs. .bind()
methods in jQuery.

Pranay Rana
- 175,020
- 35
- 237
- 263
44
votes
7 answers
Object has no method 'live' - jQuery
Delete
Gives me an error:
Uncaught TypeError:…

reggie
- 3,523
- 14
- 62
- 97
41
votes
3 answers
Upload live streaming video from iPhone like Ustream or Qik
How to live stream videos from iPhone to server like Ustream or Qik? I know there's something called Http Live Streaming from Apple, but most resources I found only talks about streaming videos from server to iPhone.
Is Apple's Http Living…

0pcl
- 1,154
- 4
- 17
- 22
40
votes
6 answers
How to embed new Youtube's live video permanent URL?
I stream live on youtube a lot and since yesterday I experience a weird thing:
I embedded the livestream URL in my site. it was youtube.com/embed/ABCDE (normal embed link). That link used to show the current livestream and not a specific video. for…

Itay Ganor
- 3,965
- 3
- 25
- 40
36
votes
6 answers
Play RTSP streaming in an Android application
I am trying to develop an Android based application, which can play video from a live stream. This live stream is produced using Wowza Media Server.
The URL is:
rtsp://tv.hindiworldtv.com:1935/live/getpun
I have tried following code in…

SJSSoft
- 723
- 2
- 10
- 28
35
votes
1 answer
Free JSON formatted stock quote API (live or historical)
I have an project where i implement live stock updates of various companies of all countries.
Can any one tell me where we can find "Free API" to fetch these details. I already search a lot on Google only found "Pro API". Need help :)

Ramit Joshi
- 369
- 1
- 3
- 5
34
votes
21 answers
Live search through table rows
I want to do a live search through the table rows, using jQuery, the "live" word is the key, because I want to type the keywords in the text input, on the same site and I'd like jQuery to automaticaly sort (or remove those who doesn't match the…

Sapp
- 624
- 2
- 7
- 13
31
votes
4 answers
Jquery - Perform callback after append
I am appending content to a list using:
$('a.ui-icon-cart').click(function(){
$(this).closest('li').clone().appendTo('#cart ul');
});
I want to perform further functions to the appended content (change class, apply animations etc)
How…

user342391
- 7,569
- 23
- 66
- 88