Tagged Questions
The livequery tag has no wiki summary.
16
votes
5answers
8k views
jQuery Drag And Drop Using Live Events
I have an application with a long list that changes frequently, and I need the items of that list to be draggable.
I've been using the jQuery UI draggable plugin, but it is slow to add to 400+ list ...
5
votes
1answer
499 views
livequery performance
I've recently discovered that livequery plugin for jQuery may be quite wasteful, as it does not use event delegation but binds all bindable events and re-checks the whole DOM on each change
if anyone ...
4
votes
1answer
237 views
Problems with livequery and rte on firefox 3.5.2
i been using the following code for some time now and it has worked ok on ie6-8 and firefox 3.
$("#article").livequery(function () {
$("#article").rte({
cssUrl: "css/rte.css",
...
3
votes
2answers
1k views
Toggle Problem in live event of jquery
I am stuck with this can anyone help me...
here is the html
<tr class="appendvalue">
<td colspan="2">
<asp:DropDownList ID="ddlSource" ...
2
votes
1answer
153 views
why doesn't the jquery change event fire when i use the up or down arrows on a select?
I am listening to the change event of a select dropdown using jquery and the livequery plugin.
$(".myDropdown").livequery("change", function () {
});
one thing i noticed (i am using firefox) is ...
2
votes
2answers
109 views
jQuery Live Doesn't Update Attributes Dom
I have a problem about getting title attribute..
$('.copy_button').livequery(function(event){
$(this).zclip({
path:'http://togl.me/tema/flash/ZeroClipboard.swf',
copy: ...
2
votes
2answers
417 views
jQuery & livequery - check if a function has been attached to a element
I'm running this:
$("*:not(#boo) .content").livequery(function(){
$("input, select").blah();
});
blah() looks like this:
(function( $ ) {
$.fn.blah = function(){
var that = this;
...
2
votes
3answers
227 views
livequery stopped working
$j(".context-menu").livequery(function(){
alert('found');
});
This was working until a couple of days ago. It just suddenly stopped. On addition of new elements with class 'context-menu' nothing ...
2
votes
1answer
188 views
livequery keypress event
(Im using the before() function from jquery to append a new <p> element to a div layer.
$('#AddParagraphButton').click(function() {
$('#TheLayer').before('<p ...
2
votes
1answer
2k views
jquery live & livequery
I'm using jquery's load to bring in thumbnails via ajax. I'd like to user to be able to hover over the cropped thumb to view a small uncropped version of the image using imgPreview plugin. If they ...
2
votes
5answers
2k views
jQuery's live and livequery not working for me when the form is loaded through ajax
I asked a similar question earlier http://stackoverflow.com/questions/1610752/how-can-i-have-jquery-attach-behavior-to-an-element-after-inserting-it, but still have not found an answer. To keep ...
2
votes
2answers
445 views
if you have the latest version of jquery, is livequery still usefull?
From what I understand livequery is for maintaining your events after DOM changes.
Does not the latest build of jquery already support this?
1
vote
0answers
35 views
Access to updated DOM objects within an anonymous function passed to LiveQuery
I have 2 input text form fields, and I would like to use Live Query and the values of both fields to GET a particular URI via AJAX. Here's an example of what I'm trying to do:
...
1
vote
0answers
46 views
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 ...
1
vote
2answers
110 views
Is livequery deprecated
I'm looking at old code. I'm seeing that for elements that get added with ajax, there's lots of livequery code. Is livequery not needed anymore with the newer versions of jquery? Does anyone know ...
1
vote
0answers
145 views
jquery.timeago plugin: Won't refresh fuzzy timestamps after new content is loaded
I'm using this plugin https://github.com/rmm5t/jquery-timeago/blob/master/jquery.timeago.js
When I load new content to the Dom, the auto-refresh (of previous content) of the timestamps sstops working ...
1
vote
2answers
228 views
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 ...
1
vote
0answers
576 views
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 ...
1
vote
0answers
129 views
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(){
...
1
vote
0answers
69 views
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 ...
1
vote
2answers
241 views
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 ...
1
vote
1answer
114 views
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 ...
1
vote
0answers
77 views
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() {
...
1
vote
0answers
66 views
Getting elements created by Livequery
I'm doing a table using the plugin livequery
function soroRow(numSoro){
if(numSoro % 2 == 0) var cRow = 'even';
else var cRow = 'odd';
var content = ($('<tr>')
...
1
vote
2answers
730 views
Dynamically generating a jQuery Datepicker with altFields
I'm dynamically generating datepicker's by simply appending the field HTML to a div:
<input type="text" value="" readonly="readonly" name="tier[2][publication_date]" id="publication_date_2" ...
1
vote
2answers
241 views
Jquery and livequery
I have some ajax that pulls information into a table and i am trying to use livequery to add a class to every second row
$('a').livequery('click', function(event) {
$(".scroll-pane table ...
1
vote
3answers
322 views
Execute JavaScript function on a dynamic element (AJAX)
Hello i have this following function:
... var model = $("#carModel");
.... model.change(validModel);
function validModel(){
if(model.val() == 0){
model.addClass("errorJS");
...
1
vote
1answer
142 views
Using livequery: Can't find propagated element created via ajax
I'm using jQuery 1.3.2 and Live Query plugin. The script needs to work in FF as well as IE6. Upgrading jQuery and using live instead isn't a possibility.
Somehow this script won't be called by the ...
1
vote
1answer
314 views
Does jquery cycle plugin work with livequery?
I use this code and it's working fine on main page, but it doesn't work when you get new content through ajax (f.i. clicking on 'Recomendados' link)
$('.videoList').livequery(function(){
...
1
vote
3answers
424 views
jquery livequery event triggered on EVERYTHING, not just selected element
I am attempting to use livequery. I unfortunately am stuck using jquery 1.2.6.
This is my code:
$(document).ready(function() {
$('a.sort').livequery('click', function(event) {
...
1
vote
3answers
503 views
PrettyPhoto not work with livequery
can anyone explain how to use the PrettyPhoto with livequery?
$(document).ready(function()
{
$(".gallery a[rel^='prettyPhoto']").livequery(
function()
{
...
1
vote
1answer
158 views
Jquery - event does not work on the newly created element
I have a simple comment section where users can post comments to another users post - It works pretty much in the style of facebook wall where a user can write something on the wall and other can ...
1
vote
4answers
401 views
livequery - confirm()
I don't get why this confirm() call fires up even though i hit "no". Can you tell me what i'm doing wrong?
$('.deleteButton').livequery('click',function(){
if(confirm('Are you sure?')){
...
1
vote
4answers
427 views
jQuery - livequery plugin help
I add update messages as table rows when a user changes a radio button. I was running into the fact that once the message was added it didn't have the functionality that I thought it would since it ...
1
vote
1answer
919 views
Autogrow jQuery Plugin on dynamic content in Internet Explorer
I am using plugin here http://plugins.jquery.com/project/autogrow and I got a problem in Internet Explorer and Chrome (Not Firefox)
See code below:
<script type="text/javascript">
...
1
vote
1answer
395 views
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 ...
0
votes
2answers
36 views
SqlDependency (change notifications) in Compact Edition?
I guess the answer is no, but I'm asking anyway: SQL Server 2005 and later supports the implementation of live views on queries through the service broker mechanism. The .NET class SqlDependency uses ...
0
votes
1answer
30 views
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 ...
0
votes
0answers
59 views
converting livequery to live/delegate/?
Searching hasn't revealed a solution to my question so asking here. I've been using livequery() for a while now in combination with live(). Generally, I use live() for known events like click but ...
0
votes
0answers
47 views
livequery not working in IE8
$('.DrpDwn option').livequery(function () {
$(this).each(function () {
$(this).addClass("DrpDwnItm");
});
});
$(function () {
// updates ...
0
votes
3answers
94 views
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 ...
0
votes
0answers
101 views
Jquery.ui, expand.js and livequery: how to bind an event when a tab is created?
I'm using jquery.ui to create tabs dynamically. Moreover, each tab has some expandable content so I want to bind the proper event when each tab is created.
I'm doing this using the code above.
...
0
votes
2answers
65 views
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).
...
0
votes
2answers
86 views
Request is sent twice to the server
I am using the live query plugin of jQuery to attach dynamic behavior to form elements and create ajax forms. The problem i am facing is as follows:
in the response to submit if I do not call ...
0
votes
1answer
277 views
Jquery Slimbox and AJAX Image Swapping Issue
First I'll mention that I have browsed through countless questions and answers, many of which would logically seem to work.
I am having an issue with slimbox and AJAX. I am performing a simple image ...
0
votes
3answers
46 views
function inadvertently executed when using .live in jQuery
I'm trying to bind a click event handler to some elements that are being created dynamically.
But the function already gets executed on simply loading the page.
I also tried the livequery plugin and ...
0
votes
1answer
109 views
Alternate For livequery to attach events for paginated grids
I am using livequery for my project for attaching events in links in table/grid. The grid is paginated ajax calls.
The confirmable link shows up a dialog when clicked. This click event is attached to ...
0
votes
2answers
166 views
livequery doesn't bind after a DOM insertion
I don't understand why livequery doesn't bind the event, but I have to use .click
This is just an example, which might also use the .click(), but in the real code I'm forced to use livequery.
Does ...
0
votes
1answer
409 views
problem with jquery live submit
I am trying to bind the submit function to a number of forms in my page, but the problem is they still keep submitting the form!
I tried these:
...
0
votes
1answer
63 views
livequery behaving strangely for dynamically added elements
When I use the following, I see all divs static and dynamic one by one including the dynamically added div #xyz
jQuery('div').livequery(function() { alert($(this).attr("id") + " div added") })
but ...