.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
0
votes
4 answers
jquery passing data from click
I am trying to pass a data from one click function to another and have no idea how to make it.
I have multiple divs but i will show you the main idea on two divs:

Kalreg
- 931
- 3
- 12
- 31
0
votes
3 answers
jQuery live in IE
JS:
var count = 0;
jQuery(function () {
$('.input').live('input', function () {
//any instructions here
count++;
$('.count').text(count);
});
});
HTML:

vlady
- 610
- 1
- 6
- 12
0
votes
0 answers
Error : Invalid Json Text. When contacting live using C#
I am trying to develop a simple metro style app using c# and Xaml, which talks to my live account and do some basic file upload/download kind of things. Even I got many code samples online for this. I am using live sdk 5.2 for this, and using win 8…

user1472423
- 101
- 1
- 12
0
votes
1 answer
jQuery DataTables on live tables from PHP script
I'm having a problem with the implementation of DataTables, I simple can't make it work in a returned table from a PHP script. Suppose this simple PHP script named simple_table.php:
…

Rui Seixas Monteiro
- 679
- 5
- 4
0
votes
2 answers
Live() with custom events in jQuery
I am using a event normalizer for the mouse events and the touch events. That way, I don't need to maintain 2 pieces of code : one that responds to the touch events and the other one to the touch events.
It works fine, but I cannot have it to work…

Alexandre
- 507
- 1
- 5
- 16
0
votes
2 answers
Red5 Pause/Play/Rewind Live Stream
Can some one tell me that how it is possible to rewind the live stream via RED5 Server.?
Is it possible or not.
Code Snippet may help.Reply soon.
Also. I know pause has to deal with the flash player but i want to know from which position stream…

user1540371
- 99
- 2
- 9
0
votes
1 answer
Monitor server events and update list in web page
In a list of events I present on a web page I want to offer the feature to get "live" updates in case of an event on the server side. So kind of a live monitor instead of reloading the list in a polling cycle.
I guess I need something like this:
-…

arkascha
- 41,620
- 7
- 58
- 90
0
votes
2 answers
jQuery Ajax request is executed too often
I bind via live operator a click function to a li-element:
$(".UListView li input.iconbutton.click").live("click", function(e){
e.preventDefault();
[...]
$.get("ajax/categorylist.php?appendcategories=true&parentcat="+currentid+"&side="+side,…

simonheinrich
- 91
- 1
- 8
0
votes
1 answer
Unable to Create Live Smooth Streaming Publishing Point Programatically
I'm trying to use the REST API for IIS Media Services to create a Live Publishing point programatically. For this, I'm sending a POST call to this URL:
http://127.0.0.1/services/smoothstreaming/publishingpoints.isml/settings
I've included two…

Badaro
- 3,460
- 1
- 19
- 18
0
votes
3 answers
How to detect specific element in jQuery event propagation
I've a notifications window (absolutely positioned div) and I want it to close when clicking everything outside that window.
I tried:
Notifications...
Click for…
kbitdn
- 33
- 1
- 5
0
votes
1 answer
live click showing another div
I have two div's that are being placed in the DOM after the page loads, with jquery. I'm having a hard time binding one div action to showing another element. Any pointers?
jQuery('#create-account-btn').live('click',function(){
…

ThomasReggi
- 55,053
- 85
- 237
- 424
0
votes
2 answers
Game status Live but page sharing forbidden?
I have submitted the game on Facebook (Ostrich Island), App center page says:
"App Detail Page Status: Live
Your app detail page is now live and will appear in Search."
BUT, I cannot even send the game link to my friend. When she receives it the…

Monty
- 3
- 2
0
votes
1 answer
Soundcloud Live Comment Stream
I am working on an app and would like to display all the comments for a given Soundcloud track in real time. We have created a custom html5 audio player and it is not the format of the standard embedabble soundcloud player. The comments should show…

grahamd711
- 23
- 5
0
votes
1 answer
Regarding Sharing and Updating Shared Folders on Skydrive (Programmatically)
I have a query regarding accessing Skydrive folders programmatically through the Live SDK on Windows Phone.
So the scenario I have at hand is that a Windows phone app that I have built creates folders (and files) on your Skydrive. Now I want the…

Siddharth Bora
- 71
- 3
0
votes
1 answer
Finding the attr values of input or span after they are loaded via .load()
I have a form that does a lookup on a database the lookup is done using load(). This is fine.
What I've like to do is to read the value of an input which is returned via the php.
I was thinking that I needed to use the .live() method but I'm not…

user1463462
- 1
- 1