Questions tagged [live]

.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.

1590 questions
0
votes
1 answer

jQuery click event stops working after one click

I have a div (#replyLoop) that the link id lmor pulls content into from the href element data-posts when it is clicked. Works fine for the first click, but then after it does nothing. I suspect it has something to do with the structure of the code…
Matt
  • 199
  • 1
  • 2
  • 14
0
votes
1 answer

on one click, print page function call more than one time jquery

$(document).ready(function() { $('#posHold tbody tr').die(); $('#posHold tbody tr').live('click', function () { $(".btnPrint").printPage({ url: "receipts/void.jsp?ID=111", message:"Your document is being created" }); …
Shahid Ghafoor
  • 2,991
  • 17
  • 68
  • 123
0
votes
1 answer

Trouble with .live syntax

I need to have a mousedown/up event effect an element that is bought into the page via .load. I am using this, but I think I may have gotten it wrong: $("#newBtn").live('mouseup', function(){ $(this).css('box-shadow', '0px 7px 10px -5px…
Jeremythuff
  • 1,518
  • 2
  • 13
  • 35
0
votes
1 answer

rtsp client stream to server

I am trying to stream (live rtsp) from a java (android) client to a darwin streaming server. I searched the internet but i couldn't find out how to do this. What i am trying to do first is to call SETUP. What i send is this: SETUP…
Amitay Molko
  • 451
  • 2
  • 8
  • 16
0
votes
2 answers

Live Streaming over RTMP from Wowza to iOS

I'm trying to play a live stream that is being sent out by a Wowza server, we are using RTMP to handle the streams. We have an equivalent for that works on android and the way they do it is by connecting to the server via the url and 2 parameters to…
G_Money
  • 318
  • 7
  • 22
0
votes
1 answer

live content from html to html

I'm using UIWebView to display data from my organization data (publicize and legal), however, for instance, I would only want to pull specific data from the html file rather than pulling the whole URL. e.g. I want to pull the "News" section of the…
Yang Jie Domodomo
  • 685
  • 1
  • 8
  • 25
0
votes
1 answer

Live video stream on website

Hey Guys i have to integrate a live video capturing on a HTML/JavaScript site for a presentation. But i dont really know what i have to search for. Please give me a hint. :) The video will be recorded live from a camera man who interview someone. In…
YeppThat'sMe
  • 1,812
  • 6
  • 29
  • 45
0
votes
1 answer

preventDefault does not work with jQuery.live

I have this piece of JS: $('.self_delete').live('click', function(e){ e.preventDefault(); $.ajax({ type: 'DELETE', url: $(this).attr('href'), success: $(this).parent().remove(), dataType: "script" …
Alain
  • 1,251
  • 1
  • 14
  • 32
0
votes
2 answers

View live updates from MySQL database?

I want to create a page where people can insert some text, hit enter, and the text be stored in a MySQL database. I can do this, but I want to be able to load a page, enter a password, and see a list of all the info in said database, then whenever…
0
votes
1 answer

Live event on iFrame element with jQuery

I spent last couple hours trying to find solution for my problem: How to make function like click on button in iframe which was dynamically created with ajax. Because .live() doesn't support this I ended up witch code like…
Petr
  • 183
  • 1
  • 1
  • 11
0
votes
1 answer

jQuery Tools Dateinput with live function

I am using jQuery Tools Dateinput script http://jquerytools.org/demos/dateinput/index.html for date picker. $('.inputDate').dateinput({ format: 'yyyy-mm-dd' }); I am cloning this input field so I have to use live function. Currently, after…
Goldie
  • 1,570
  • 5
  • 21
  • 33
0
votes
3 answers

jquery live click event stopPropagation

I have a dropdown menu which contains a input and several buttons. The dropdown should hide when I click one of the buttons or somewhere else, but don't hide when keypress on the input. I use the following code, it doesn't work. Though it works when…
Jensen
  • 1,653
  • 4
  • 26
  • 42
0
votes
4 answers

jQuery - change from live() to on()

I have the following code and would like to change from using the live() method to using the on() method: $('.commenttext').live('keydown', function(e) { if ((e.which == 13) && !e.shiftKey) { comment($(this)); return false; …
Dennis Hackethal
  • 13,662
  • 12
  • 66
  • 115
0
votes
2 answers

C# XNA Network Game Without LIVE

I have made a game in C# with XNA. And I would like to make it playable online. I want to be able to host a game on one machine and be able to connect to this game on other machines. Kinda like a listen server in Half Life. This might seem like a…
Kelkk
  • 19
  • 1
  • 3
0
votes
3 answers

How to create a live scorer app for Android?

I am developing an android app where I will provide a button on which, when ever the user clicks, they will get the live score updates of the Soccer game. Are there any tutorials for that or, any Open-source code available for that I am trying to…
Zai Khan
  • 45
  • 2
  • 3
  • 8
1 2 3
99
100