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
jQuery how to translate livequery to on?
I have this code which works however it is using a old legacy function "livequery" which should really be switched to using "on". However for the life of me I can't get this to work.
Here is my code snippet.
jQuery('.box').livequery(function(){
…
user381800
1
vote
1 answer
jquery/livequery not working in this particular case
Using jquery, all of my other livequery functions work fine, i am getting an error for this particular one...
$("[class*='welcome']").livequery("click", function(e){ etc.......
The error is:
Uncaught TypeError: Object #

brian wilson
- 497
- 1
- 7
- 15
1
vote
1 answer
Live query plugin doesn't work with the visible attribute selector
I have the following running in the jquery ready function
$('[id$=txtCustomer]:visible').livequery(
function() { alert('Hello') },
function() { alert('World') }
);
I get an alert for the first time saying 'Hello' but the…

Ali Kazmi
- 3,610
- 6
- 35
- 51
1
vote
2 answers
livequery not working in ie
hello friends i am working on a like module .and having some difficulties running it on ie . in all other browsers its running fine . the prob is when i click on like button nothing happens in ie . can anyone see my piece of code and help me out .…

Sakshi Sharma
- 1,414
- 4
- 20
- 39
0
votes
2 answers
Run jCarouselLite again, after an AJAX request
I am using jCarouselLite to show a post scroller, which loads posts from a specific category. But, I want to be able to switch the category via AJAX.
So, I load up everything in a div, and then run:
jQuery(function($)…

Miloš Ranđelović
- 444
- 1
- 5
- 13
0
votes
2 answers
Fancybox not working on Ajax site after PHP call and DOM repopulates with HTML
Im building a simple ajax website that loads #pageContent through a php call that populates the DOM with HTML. I'm using Fancybox for links within the #pageContent. Problem is on the home page the fancybox works fine when I go to another page though…

DJERock
- 119
- 1
- 13
0
votes
1 answer
Objects detected by Livequery in ie7
Can anyone figure out why this gives me blank alert boxes in ie7?
$("#bottles a").livequery("click", function(event) {
thetitle=$(this).attr("title");
alert(thetitle);
return false;
});
For each new A tag loaded, ie7 alerts a…
Kole
0
votes
1 answer
Click event firing anywhere on the document,
The code :
$(".postAnswer").livequery("click", function (event) {
appendControl($(this));
event.preventDefault();
});
This code block is inside the document.ready function. What I am trying to do here is , on every click of the…

stooicrealism
- 548
- 2
- 9
- 29
0
votes
0 answers
Parse server live query protectedFields.forEach is not a function
i have an issue by using live query from parse server, it successfully connect to live server but whenever it received some message it show this error
error: Failed running afterLiveQueryEvent on class Chat for event create with session undefined…
0
votes
0 answers
Swift Parse Live Query subscription not functioning for chat app, even though messages are logged and can be sent and received with request
I'm trying to create a chat, but subscription doesn't work. I see server gets my messages in logs, I can send message, get messages with request, not query as needed
import Parse
import ParseLiveQuery
final class ViewController: UIViewController {
…
0
votes
3 answers
using jquery, if i need to capture dropdown change event, do i need livequery plugin?
I want to have some code run when i change the selection of a dropdown. i see the livequery plugin states that this is needed to support as some browsers don't do it out of the box
Do I really need livequery to capture onchange event of a dropdown…

leora
- 188,729
- 360
- 878
- 1,366
0
votes
1 answer
Problem with configuration of LiveQuery in Parseplatform
Hello i have installed Parse server and parse sdk for php on my Linux Centos Server.
Parse Dashboard: 1.3.3,
Server version: 4.3.0
I'm managing those db's using php code. This parser was installed by someone else. The thing is I'm not sure how to…

Adrian Zalewski
- 33
- 7
0
votes
2 answers
Issues with multiple filters in livequery
I have a selector to which I apply the plugin selectmenu. Works fine however I want to use livequery to deal with hidden elements (if an element is hidden when selectmenu is applied it butchers it).
This…

cyberwombat
- 38,105
- 35
- 175
- 251
0
votes
0 answers
livequery is not working after WordPress 5.6 + update
I am using livequery 1.3.6. When I updated WordPress 5.6+ version, it doesn't work. Can you help me to fix the issue. I am using in my javascript function like below code
$('#my-popup').livequery(function() {
myFunc.load();
…

MaxCode
- 13
- 3
0
votes
1 answer
call plugins mehods for dynamically added element to DOM in jQuery
I need to call some jquery plugin method for new created and added elements to page.
Before I used livequery plugin to discover those elements and call my desired plugin for those. for example in this example I used livequery plugin to call iCheck…

Ahmad Badpey
- 6,348
- 16
- 93
- 159