Live Query utilizes the power of jQuery selectors by binding events or firing callbacks for matched elements auto-magically, even after the page has been loaded and the DOM updated.
Questions tagged [livequery]
127 questions
0
votes
1 answer
Meteor sends entire array when only single element is updated
I have a collection that has a 10 x 10 2-d array field. When I update an element in this array, the entire field is sent back to me as changed.
Is there a better way to do the update part?
I'm new to noSQL so maybe I just need to rethink my…

jjr4826
- 194
- 3
- 12
0
votes
1 answer
Livequery and DOMNodeInserted replacement for IE
This question has been asked a few times on stackoverflow, but I have yet to come across a solution that suits my unique situation.
I'm looking to replace deprecated code livequery and DOMNodeInserted. Examples shown below.
I’m developing javascript…

ThanosLovesYuna
- 87
- 1
- 1
- 8
0
votes
1 answer
meteor for very fast data
I just started with Meteor app development and have a use case which I am not sure is good for meteor.
We have a java application that pushes data to redis at a very fast rate (data updates in less than 50 milliseconds) and we are building a web…

Sohail
- 4,506
- 2
- 38
- 42
0
votes
1 answer
can't get jquery livequery to with an update panel
I have some basic html inside an asp.net update panel. Using livequery, I set up autocomplete, blur and keydown events so that they all continue to be wired up after the update panel does a partial page load. When the page initially loads, all the…

Jeremy
- 44,950
- 68
- 206
- 332
0
votes
1 answer
jQuery: Replacing .livequery() with on()
I have the following jQuery/LiveQuery code.
It waits until a class of "highlight_this" appears somewhere on the page, then it highlights a table row in order to bring attention to the row of data that has just been changed.
So the user selects to…

Bradley
- 1
0
votes
1 answer
LiveQuery Graph plotting: Data does not pass through from View to ViewModel
I'm a newbie in the world of javascript and c# so please forgive the weakness of some of the logic.
I'm trying to get binded data to move from the view (report.regional.html, using the link 'View country report') to the viewmodel…

LeloKunene
- 25
- 5
0
votes
1 answer
Using jQuery tooltip at runtime by livequery
Does anybody know how to use tooltip at runtime using livequery? I found some infos, but for me it doesnt work.
jQuery('.button').bind('click', function () {
std();
});
function std () {
jQuery('.abcd').livequery.run(function() {
…

user270158
- 421
- 2
- 5
- 9
0
votes
2 answers
livequery fires multiple times
Here's the code:
$(document).ready(function(){
$(".menu ul li a").click( function(){
curpage = $(this).attr('href');
loadpage(curpage);
});
});
function loadpage(){
switch (curpage){
case "#page1":
getpage1();
…

Jason
- 95
- 8
0
votes
1 answer
Livequery fires click no matter where the user clicks in the document
I have replaced the traditional select/option form elements with a nifty little popup window when a triggering image is clicked. The page is for accounting purposes and so multiple line items are to be expected. I've written the javascript that will…

CB.
- 1
0
votes
1 answer
Activate keyup within an input while typing jQuery
I have a text input using .keyup to active a .livequery on an ajax load. The problem is, the user has to click outside of the box to active the keyup function. Is it possible to simulate a keyup function while typing?
Here's what I have:
…

Denny Smith
- 113
- 1
- 10
0
votes
1 answer
Draggable not disabling when I tell it to
JS:
function handDrag(dragHand)
{
if(dragHand ==true)
{
//live query to auto bind the drag function to all elements of the cardsHand class even auto generated ones
$('#playerHand')
.livequery('mouseenter',…

LOTW
- 1
- 1
0
votes
4 answers
jQuery run function on element loaded via AJAX
I have a project that is loading in replies to a post through a js function:
$('div.discussion_content').each( function() {
discussion.loadDiscussion($(this));
});
It manages to work great on page-load, but we have an 'infinite scroll' on the…

Kenneth Ahlstrom
- 63
- 8
0
votes
1 answer
fadeIn response using livequery, automated ajax calls with setInterval not fading in
Alright, gents, here's the problem. I am working on doing an auto update (using ajax) on my website to load any new comments that may have been posted since the dom load. The script works fine as in a new comment will be loaded with the ajax call;…

Daniel
- 533
- 4
- 13
0
votes
2 answers
Problem using jquery UI droppable and livequery!
I have this code for some elements to be dropped
var $tab_items = $("ul:first li",$tabs).droppable{ tolerance: 'touch' ,....
and it´s work ok, but the problem it´s when I load another button by ajax or by javascript,
don´t work because the new…
Diego
0
votes
2 answers
JQuery getScript with livequery - asynchronous execution throwing off my results
We had a "utility" js function that was included in several js files in our site, so to reduce code repetition we moved it to a utilities file and modified all the js files to load it before using it with getScript. This worked in most cases, but…

froadie
- 79,995
- 75
- 166
- 235