Top "Live" questions

.live() function in jQuery attaches an event handler for all elements which match the current selector, now and in the future.

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'); }); …

jquery callback append live
Object has no method 'live' - jQuery

<script> $(document).ready(function(){ $('.delete').live('click', function(e){ alert('delete'); e.preventDefault(); }); }); </script> <…

javascript jquery live
Raspberry Pi no delay (<10ms) video stream

I'm building quadcopter based on Raspberry Pi. I want to stream video from webcam via cellular conection to my computer. …

video-streaming real-time live raspberry-pi
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. …

jquery bind live
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 …

c# redirect process live
jQuery event bubbling

I want to understand how exactly to interpret bubbling. Does it mean going up the HTML code hierarchy or something …

javascript jquery live jquery-events event-bubbling
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 …

jquery live
Adding new HighChart Series

At this code javascrip give an error $.each(JSON, function(i, array) { chart.series[i].name = array.teamName; chart.series[…

arrays highcharts live series
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 …

api live
.live() vs .bind()

I want to know the main difference between .live() vs. .bind() methods in jQuery.

jquery bind live