-if i try to animate a set of elements who match a selector, the animations will be executed on each element in some sort of a loop. how do i attach a callback that will be executed, after ALL elements have been animated instead after each element animation? is this possible at all? |
Hi, well i am using quicksand, i want to use tool tips in it, but i am facing problem due to callback code that i am not able to implement, this is the place where quicksand is present and also told about tooltips usage with it, well he has not explained it in detail as expects people to know jquery before ... |
|
Hi there!For learning how to use jQuery I created my own AutoComplete Textbox (although there is one in the jQueryUI Lib). The users types something in a textbox and after 3 characters, the getJSON method is beeing called. This processes the data by calling another site and after received the data, it displays the result in a div tag.If a user ... |
Hi there!I created my own "Auto Complete TextBox" to get to now jQuery a bit better (although I know there is a jQueryUI with an autocomplete textbox).In the attached file (AjaxSearch.txt) you'll see my source code I've created so far. The user can enter a string in a text box. This has set a keyup event. In this callback: if ... |
|
|
|
Handling a success callback... in Getting Started 1 year ago Ok, the json data is listed at the bottom of the page. Firebug shows the data, and the JSON object looks okay... So this never alerts me of anything, but I see the data coming back (diff domain, made sure I have &jsoncallback=? ) if ... |
HiI have a grid, and i want to have modal window to open when i click "edit" on particual row, in this form i have "submit" and "cancel" and when i press submit i want to send a command like "javascript:refresh()" which refresh the grid and show the changes. But when i press cancel it just acts like i did a ... |
|
Keep in mind that the function you're defining with the alert in it is the 'success' function, it only gets executed if the request succeeds. With that in mind, can you navigate right to your php page? Maybe something like this:test.php?name=john&time=2pmWhat happens when you do that? There is probably something going on on that page that is preventing a successful return.Hope ... |
|
Hello,I'm using jQuery-1.6.2 and stumbled upon the problem that exceptions within AJAX callbacks are silently ignored: $.ajax({ url: '/', success: function() { ... |
|
Hi everybody,first of all, I don't know what the cause of the problem I'm experiencing is, so I'm cross posting this here and at the DropBox forums...This is a direct follow-up to this thread:http://forums.dropbox.com/topic.php?id=38504&replies=2My environment is still the same. I'm using- jQuery (http://www.jquery.com)- jQtouch (http://www.jqtouch.com)- dropbox.js (http://code.google.com/p/phone2chrome/source/browse/trunk/phone2chrome-js/js/dropbox.js)- other JS librariesto build some kind of driver's log, mainly targeted at the iPhone ... |
|
|
|
|
Note that I'm not asking for empirical proof or suggestions on how to find out. I want to know whether jQuery design has deliberately taken this into account. Yes, I can read the source code. No I don't plan to do so (for now), since I consider it an essential gap in the documentation. |
A missed callback in Using jQuery 10 months ago Hi,I develop a projet using jQuery (you can see this projet at http://myclimb.fr).I have a search's module which are loaded as: |
So, I'm trying to write some jQuery functionality that allows you to remove items from a list... Apple [remove] Orange [remove] Pear [remove] And I was playing around with callbacks because I wanted the item to fade-out, *then* to get removed. So I wrote something like... Code: function setUpRemoveListeners() { $("ul#recipients a.removeEmail").click(function () { //get the li element that the anchor ... |