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
1
vote
1 answer
Cfwindow preventing livequery from working?
I'm using livequery on document.ready to apply certain functionality and styling to all elements with a specific class. I want it to apply to all elements that will ever show up, so I'm using livequery, and some of the code is not event-based, so I…

froadie
- 79,995
- 75
- 166
- 235
1
vote
0 answers
livequery not working in IE8
$('.DrpDwn option').livequery(function () {
$(this).each(function () {
$(this).addClass("DrpDwnItm");
});
});
$(function () {
// updates Contract Id dropdown upon selection
…

Mike Johnson
- 11
- 2
1
vote
0 answers
Why does Parse LiveQuery not always trigger update/create/enter event?
I am trying to achieve a board that enables real-time editing for cooperating users. I am running a parse server using Sashido, where I have LiveQueries enabled for among other things 'Sticky'. For the frontend I have the following code:
const…

MsBlueSky
- 31
- 5
1
vote
2 answers
Livequery and each()
i have an .each() loop doing something on all matching elements. but i also have a way to add those elements.... i'm trying to get livequery to realize that a new element has been added and run it through the same each loop.
here's a general…

helgatheviking
- 25,596
- 11
- 95
- 152
1
vote
0 answers
Parse Live Query: Not receiving Events on iOS Client. Our Parse server hosted on Azure App Services
Issue Description
We have hosted Parse server on Azure App Services. We are able to connect to live Query and able to Subscribe to it. We are getting below messages.
2019-01-01 19:03:26.917094+0530 LiveQueryTest[59625:972922] ParseLiveQuery: Sending…

Nishith Sheth
- 991
- 7
- 13
1
vote
1 answer
Jquery tools (accordion / tabs) + LiveQuery
I am using jquery tools + livequery. I have a horizontal accordion with 4 elements. On initial page load they are created by a PHP-script, so the accordion works great - first tab opens, and everything slides properly. (just like in this example:…

vroomer
- 11
- 3
1
vote
0 answers
Livequery doesn't find element in a first look
I have a button that is generated dynamically and I want to get the click event in this button.
So, I coded this:
$(document).ready(function(){
$('#editDescription').livequery('click',function(){
alert('click');
});
});
But it did…

Frias
- 10,991
- 9
- 33
- 40
1
vote
0 answers
Parse Server periodically is getting slow
parse-server version 2.7.4 (Azure on a Standard_B4ms)
mongoDB-server version 3.4.14 (Azure on a separate Standard_B4ms)
I have an iOS & Android app, with LiveQuery (set on the parse-server's VM) that's being used a lot for chatting, where usually…

Sotiris Kaniras
- 520
- 1
- 12
- 30
1
vote
0 answers
Why is my livequery attached function firing for everything on the page?
I have a mouseover function and opposite mouseout function attached to images on my page to bring up a larger version when they're hovered over. The functions are attached to the image elements via livequery.
The problem is that it appears my…

Gregory Bell
- 1,861
- 1
- 19
- 21
1
vote
2 answers
Doing something after jquery updates the DOM (AJAX request)
I have some livequery handlers which update the page content. I'd like to display the content only after they have fired (to prevent users seeing for a while the unchanged version). The content is loaded using normal AJAX.
So far I tried the…

adamw
- 8,038
- 4
- 28
- 32
1
vote
1 answer
How can I make this jquery function more terse?
I have this code in a common javascript file in my asp.net project.
jQuery-Lint returns "You've used the same selector more than once" whenever I mouse over one of the buttons that was affected by this function.
//turns all the buttons into jqueryUI…

Dave Neeley
- 3,526
- 1
- 24
- 42
1
vote
1 answer
Unsubscribe live query in OrientJS
I use OrientJS with OrientDB to perform livequery. The subscription to live query has no problem but I could not find any way to unsubscribe from that event.

Ameer Jhan
- 13
- 3
1
vote
1 answer
at WebSocket.socket.onerror in LiveQueryClient.js when start app
I have a problem with my small demo for live query as in attached image.
To be honest, I have no idea why does it go wrong. Try to find some solutions around but not yet successfully. Please give me some ideas or solutions if you know this issue.…

kembedded
- 515
- 3
- 11
1
vote
0 answers
org.json.JSONException: No value for title (PARSE with BACK4APP)
I am using Parse with back4app so my app supports LiveQuery, however the LiveQuery throws an exception.
What I have tried,
-JSONObject.optString (It does not work)
Here's my code,
public class Live extends AsyncTask{
…

Hamza Amin
- 49
- 7
1
vote
0 answers
jQuery livequery - cleanup function firing when it should not?
I have the following code, which is supposed to set the main_table_on_page variable according to the actual table presence in the document...
$('table#main_middle_table').livequery(function() {
if ($("table#main_middle_table").attr("id")) {
…

Zathrus Writer
- 4,311
- 5
- 27
- 50