Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
201 views

When would I use JQuery.Callbacks?

I was looking through new stuff added to jQuery 1.7 and I saw they now have jQuery.Callbacks() http://api.jquery.com/jQuery.Callbacks/. The documentation shows you how to use jQuery.callbacks() but ...
8
votes
2answers
145 views

How to track lists of nodes in a Jquery plugin (if clients may remove those DOM nodes)

I'm writing a jQuery plugin that "points at" a certain number of nodes in the DOM. Yet if I try something like having my plugin hold references to a set of nodes, I worry about them going "stale". ...
6
votes
1answer
485 views

Proper way to add a callback to jQuery DatePicker

DatePicker has an internal function, _adjustDate(), which I'd like to add a callback after. Current Method This is how I'm currently doing this. Basically, just replacing the function defintion ...
4
votes
2answers
5k views

jQuery HOW TO?? pass additional parameters to success callback for $.ajax call?

I am trying, in vain it seems, to be able to pass additional parameters back to the success callback method that I have created for a successful ajax call. A little background. I have a page with a ...
3
votes
2answers
156 views

What are jQuery hooks and callbacks?

I am having a tough time conceptualizing what exactly callbacks or hooks are in jQuery. They seem to be lumped together, but I don't know the difference between them. From what I understand from ...
3
votes
3answers
68 views

my jquery fiddle isn't working

My fiddle only shows part of what I'm trying to do, but since I can't even get the first part to work, I didn't try to add the second part. First part There's 2 forms. the second form is invisible ...
3
votes
2answers
268 views

Passing anonymous function to custom event trigger in Javascript/jQuery

I'm trying to trigger custom events on DOM elements and pass anonymous functions to be executed when the event is triggered (using jQuery). So something like this: $(some-dom).live("custom_event", ...
3
votes
2answers
201 views

Callback of a load function jQuery

I want to be able to do the callback of the .load() function when an element has been created - an image element. The code works by loading a new image element by this code: $('<img ...
3
votes
2answers
341 views

Programming a callback function within a jQuery plugin

I'm writing a jQuery plug-in so I can reuse this code in many places as it is a very well used piece of code, the code itself adds a new line to a table which has been cloned from a hidden row, it ...
2
votes
1answer
103 views

jquery autocomplete display the output string

I want to have the script display each item on a list of value from a string of comma delimited set. ex. "one,two,three,four" On the autocomplete drop down, it should show: one two three four ...
2
votes
1answer
86 views

JQuery callback and return to the first call?

I for this function to load an external page. Page URL grab from DIV id. $(".contentArea").load($('.contentArea').attr('id'), function(){ The page loaded, got a datatable so I added it to the ...
2
votes
1answer
43 views

extract parameters from callback outside of the callback

How can I extract the arguments (a, b) of a callback-function and add another parameter (c) to the function-call? function mycallback(a, b, c) { // do stuff with a, b, c } function ...
2
votes
0answers
133 views

jQuery ajax call does not launch callback when data type is 'script'

For example with jQuery 1.5.2 or smaller this code will log 'ololo' in FireBug console: $.get( 'some_url', { data: 'some_data' }, function() { console.log('ololo') }, 'script') Same with ...
2
votes
1answer
513 views

jQuery AJAX Request 302 Redirect - What callbacks are available?

I'm working with an older system that is using jQuery 1.2.6. I am sending an AJAX Request via the jQuery.ajax function. The URL that it is hitting is sending a 302 HTTP Redirect response and ...
2
votes
3answers
103 views

Call is undefined

I'm trying to set up my plugin to accept a callback function inside as a option argument: (function($) { $.fn.MyjQueryPlugin = function(options) { var defaults = { onEnd: ...
2
votes
2answers
166 views

Why does IE have incorrect margins after my animation?

I'm using jQuery Masonry (google it, it's super awesome) for my site's dynamic layout. For some reason, when i invoke Masonry after performing a .load() event, i don't get exactly the layout that is ...
2
votes
4answers
266 views

How to execute jQuery callback before data?

I have a simple post, which executed the data returned as a script as such: $.post("/home", { foo: 'bar' }, function(){ //callback function }, "script"); Here's what happens: The request gets ...
2
votes
3answers
453 views

jQuery get source element in callback

$('.myElem').live('click', function() { $(this).hide(500, function() { $(this).siblings('.myOtherElem').show(); }); }); The above doesn't work because $(this) is no longer in correct ...
2
votes
2answers
979 views

jQuery Cycle slide count

Im currently using a plugin called Cycle for jQuery and would like to tweak a small piece of functionality but don't really know how. I made an example which can be viewed here on jsbin. The issue ...
2
votes
1answer
371 views

jQuery Plugin: Using callback to alter plugin behavior

I am using the jQuery token input plugin and would like change its behavior when a token is added. I added an "onAddToken" callback to the original code so I can see when a token is added to the ...
1
vote
4answers
39 views

javascript objects, callback and this keyword

I'm having trouble figuring out how to correctly reference the 'right' 'this' in a jquery ajax callback. I have a javascript class where I define the callback: Foo.prototype.onCallback = ...
1
vote
3answers
48 views

Loose coupling of custom callbacks in jQuery

I was wondering if there exists a design pattern/framework which allows for the loose coupling of callbacks in jQuery. Basically, I have a ajax call which retrieves settings that will be required in ...
1
vote
2answers
124 views

jQuery callback after append

I have the following code: HTML <div id="body"></div> JS var site = { 'pageData' : [ { 'loadInTo' : '#aboutUs', 'url' : 'aboutUs.html', ...
1
vote
1answer
47 views

Deferred failed callback not calling

I am trying to figure out why the failed callback is not working for this deferred http://jsfiddle.net/austinbv/wzve6/6/ get_each_total = function(callback) { var requests; requests = []; ...
1
vote
1answer
121 views

closure inside a for loop - callback with loop variable as parameter

I am using jQuery "GET" in a loop to obtain several results from the server. I want to include the loop index as a fixed parameter to the call back but its not working. (I followed the advice of ...
1
vote
3answers
54 views

Callbacks not working properly

I'm at a loss. In this code, #options should wind up fading in, but it doesn't. The CSS attributes are set, though. $("#content > p").animate({ opacity: '0' }, function() { ...
1
vote
2answers
129 views

jQuery UI get property of element in draggable div on drop:

$('#drop_area').droppable({ accept: '.draggable', drop: on_element_drop }); function on_element_drop(event, ui){ } <div class="draggable"> <img src="test.png" alt="3"> ...
1
vote
3answers
569 views

JQuery UI Dialog with callback in button action fails second dialog open

this seems like a common topic, but I haven't seen anyone post this particular version. <script> $(document).ready(function() { $("#somebutton").click(function() { $.get("someurl", ...
1
vote
1answer
854 views

jquery ajax ignores 500 status error

I'm making some GET requests to an App Engine app, testing in Chrome. Whilst I can see in javascript console that some calls result in a 500 server error, I can't seem to find anyway of capturing this ...
1
vote
2answers
113 views

jQuery Method in Plugin Caller

I am writing my first jQuery plugin and I ran into a few speed bumps. Here is what I would like my plugin caller to do, basically, but I'm not sure how to structure the plugin: ...
1
vote
1answer
147 views

prevent callbacks from being stopped when stopping parent function in jquery?

It goes a little something like this: $("example").hover(function(){ ("example").stop().show(/*More Code*/, callback()); }, function(){ ("example").stop().hide(/*More Code*/, ...
1
vote
1answer
254 views

stop jquery from appending it's own callback

I'm trying to call Vimeo's API using an .ajax jquery call. Here's my code: function fback(data) { alert('data = ' + data); } $.ajax({ url: ...
1
vote
2answers
288 views

jquery simplemodal unable to call another function

In my modal window I have a "continue" button. Whilst I can get the modal to close by assigning the button with the simplemodal-close class, I can't get it to call my function. I've put together this ...
1
vote
2answers
196 views

anonymous callback function in .animate() not working

I can't for the life of me figure out what the problem with this code is. The animation itself works fine: if (!list.is(':animated')) { list.animate( {"top": "+="+item_size}, ...
1
vote
1answer
260 views

jquery: howto return caller-id when using wildcard selectors

i'm using jquery to invoke JSON-requests and they're triggered form a bunch of autocomplete-fields. I use wildcard-selector and now need to find out which ac-field that fired the event. ... $( ...
1
vote
1answer
117 views

Incomplete Execution of Callbacks on jQuery POST

I have 2 js methods which do an AJAX post to the server and display results accordingly. 1) Delete - Delete upon callback 'hides' the deleted element and does not the refresh the page function ...
1
vote
2answers
492 views

If a jQuery function calls itself in its completion callback, is that a recursive danger to the stack?

I'm writing a little jQuery component that animates in response to button presses and also should go automatically as well. I was just wondering if this function recursive or not, I can't quite work ...
0
votes
0answers
28 views

jQuery $.Callback() tutorial/explaination

I find that jQuery's docs on jQuery.Callbacks() not very useful and as such can't really see a good use for it. Are there any good examples of when jQuery.Callbacks() would be used? If it's just for ...
0
votes
2answers
44 views

Making sure Image is fetched in Jquery click function before moving to new page.

I am using jQuery 1.2.6 :( When a user clicks on Html element with ID=LINKID and having anchor tags, he would be redirected to a new page. I want to make sure that a small image is fetched before the ...
0
votes
0answers
14 views

adding callback after preload completes (Filament Group jquery Plugin)

can someone please advise? I am building a mobile web app with a few heavy images that, for performance purposes i'm preloading on the splash page. I decided to use Filament Groups preloader plugin ...
0
votes
0answers
31 views

Infinite Scroll Callback is calling to every page when a new page loads

I have a website with infinite scroll and an audio player. I created a callback for the audio player, but it isn't working properly. Every time a new page loads, a new audio player loads on each page. ...
0
votes
1answer
16 views

how does browser know it needs to execute callback when receiving cross domain JSONP

when i am doing a cross domain AJAX , how is the returned resource (callback returned around JSON) result in the callback method in the client being executed. is this feature (execution of callback) ...
0
votes
1answer
30 views

jquery animate two class at once

I'm having a problem with the animate() function. I want to first animate 2 objects, then wait for 4 seconds and animate that object again. My code is like this: //Animation In ...
0
votes
2answers
43 views

jQuery $.animate() multiple elements but only fire callback once

If you select a class or collection of elements to animate with jQuery: $('.myElems').animate({....}); And then also use the callback function, you end up with a lot of unneccessary animate() ...
0
votes
3answers
52 views

jQuery “exists” function with callback

Extending: http://stackoverflow.com/a/31047/235633 Is there a way I can extend this custom jQuery function to use a callback? Essentially I want to be able to have a list of selectors and detect ...
0
votes
1answer
64 views

jQuery - Best practice when returning content from getJson request to caller function

What is the best practice when returning content from the result of a $.getJson request to a caller function? I have a function called $.fn.getSomeData which has a $.getJson call inside it (this ...
0
votes
4answers
51 views

jQuery ajax callback never called

Javascript code, using jQuery 1.7: $( function() { $.get('/ajax_dummy', function() { alert('foo'); }) }); With Firebug I can see that the HTTP GET request is sent and a "hello world" response ...
0
votes
1answer
31 views

How to not override jqueryUI callbacks

I'm extending a jqueryUI widget, and doing some things in the callbacks, however I want to be able to still use these callbacks in my application. Currently, this just overrides anything i've done in ...
0
votes
0answers
34 views

The callback function is not executed in first run of $.getScript! Why?

I took some pictures, you see no error in the console is launched! So you see, without making any changes to the code, the second request works perfectly! Attempt To try to catch the error, I ...
0
votes
5answers
74 views

Javascript - Property of an instance class is undefined after callback from $.post

I have the following js snippet: <script language="javascript"> function test() { this.a = 10; }; test.prototype.next = function () { ...

1 2