.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
27
votes
1 answer
Flutter live streaming
I am trying to build a mobile app which streams video from the camera of the device and sends it live to a server. Also, the mobile device should be able to play live video received from the server.
I am building the app in Flutter, but can't seem…

Nikolay Nikolov
- 473
- 1
- 6
- 8
26
votes
2 answers
jQuery .on() with multiple selectors in event delegation?
I have using .on() in jQuery 1.7 and wondered whether it is possible to attach multiple selectors at a time for elements that have been injected onto a page. Previously, I was using live() - but it's obvious why I want to move given performance…

Andy
- 18,723
- 12
- 46
- 54
24
votes
7 answers
Get Live output from Process
I've a problem in my project. I would like to launch a process, 7z.exe (console version).
I've tried three different things:
Process.StandardOutput.ReadToEnd();
OutputDataReceived & BeginOutputReadLine
StreamWriter
Nothing works. It always "wait"…

Extaze
- 1,117
- 2
- 10
- 18
23
votes
3 answers
jquery live event for added dom elements
I want to add a class to any DOM element that is on the page now or in the future that has a specified class and meets some criteria
so for some pseudo code
$('.location').live('load',function(){
if($(this).find('input:first').val().substr(0,1)…

mcgrailm
- 17,469
- 22
- 83
- 129
21
votes
2 answers
tipsy live does not work with jQuery 1.9.0
We recently upgraded our jQuery to 1.9.0, but it broke our tipsy plugin. Its live functionality now causes an error.
$('.tooltip, abbr').tipsy({
live: true
});
TypeError: this[binder] is not a function
Are there any fixes or patches for this?…

Dysprosium
- 344
- 2
- 9
18
votes
7 answers
jQuery event bubbling
I want to understand how exactly to interpret bubbling. Does it mean going up the HTML code hierarchy or something else?
Secondly, I was going through an example and I could not understand the last part where it says
The P-based click handler…

copenndthagen
- 49,230
- 102
- 290
- 442
17
votes
6 answers
How to put a eclipse web project onto a real world server?
I have never placed anything on a web server.
i have a dynamic web project built in eclipse using servlets (using tomcat 7) that connects to a mysql database that is on a computer that is on my college network.
How would i go about placing this…

molleman
- 2,934
- 16
- 61
- 92
17
votes
2 answers
RTMP stream on iOS
I have to make an iOS app which plays a live video stream from a camera. I know that the iPhone only supports Live HTTP stream, but unfortunately it comes with a delay of about 6-10 seconds, which is far from my needs - I need a real time view.…

cpprulez
- 896
- 2
- 9
- 21
17
votes
3 answers
jQuery CSS() for dynamically created elements
I'm using jQuery CSS function to style some elements
$element.css(style);
This works, but a part of the elements are created dynamically after the page load.
This should be
$element.live ('created',function() {
$(this).css(style);
});
I'm stuck on…

Omar Abid
- 15,753
- 28
- 77
- 108
17
votes
5 answers
How to remove an appended element with Jquery and why bind or live is causing elements to repeat
Now I know this basic question has been asked before, but I must be doing something wrong. I know that an appended element must bound before I can do anything to it. However, try as I might I can't get it to work.
I am pulling in a message and…

user1197728
- 181
- 1
- 1
- 5
16
votes
2 answers
Where can I find an API for the English Premier League?
I'm trying to build a "fantasy team" site but I can't seem to find an API for the English Premier Leauge. Is there one for free or do I have to pay to get that information?
Thanks!
/Niklas
Edit
My idea was to charge $10 for entering a team and to…

Niklas
- 13,005
- 23
- 79
- 119
15
votes
3 answers
How to use Microsoft Account in an openID site?
I am planning to build a site with openID authentication , most of my target users will register in the site using Microsoft accounts (hotmail/live/windowslive).
Is there anyway to use Microsoft accounts as openID?

Khaled Musaied
- 2,513
- 3
- 25
- 38
15
votes
3 answers
Live SDK - Try to Sign In without SignInButton
Is there any way to login to Live for an App (Silverlight, WP7 can) without having to click on SignIn button.
I want to log me dynamically, for example: when you start the app, I want to log in to me. How to do this without resorting to the button?

richardaum
- 6,651
- 12
- 48
- 64
14
votes
3 answers
Jquery: detect if middle or right mouse button is clicked, if so, do this:
Check out my jsfiddle demo, if e.which == 1 then when you left click the h2 it will
e.which == 2 or e.which == 3 then it wont work. 2 is the middle mouse button, and 3 is the right mouse button. i found this too:
JQuery provides an e.which…

android.nick
- 11,069
- 23
- 77
- 112
13
votes
3 answers
What is the Dojo equivalent to jQuery .live()?
What is the Dojo equivalent to jQuery .live()?
http://api.jquery.com/live/
The only solution I found was to dojo.disconnect the event handlers and re-connect them once a dynamic piece of markup was added to the page.

Christopher Altman
- 4,868
- 2
- 33
- 49