Tagged Questions

jQuery is a cross-browser JavaScript library that provides abstractions for DOM traversal, event handling, animation, and AJAX interactions for rapid web development.

learn more… | top users | synonyms (1)

20
votes
2answers
783 views

Pass in an array of Deferreds to $.when()

Here's an contrived example of what's going on: http://jsfiddle.net/adamjford/YNGcm/20/ HTML: <a href="#">Click me!</a> <div></div> JavaScript: function ...
11
votes
5answers
6k views

JQuery Conflicts with Primefaces?

I have included JQuery1.5 in the header of a JSF page. In that page there is a bunch of Primefaces components already coded. After I have included the Jquery.js in the header of the page, some ...
10
votes
7answers
6k views

jQuery 1.5 AJAX call fails with “invalid label” for JSON requests

I've just upgraded from version 1.4 to version 1.5 of jQuery, and now my AJAX calls always fail with the "invalid label" error. An example request is: jQuery.ajax({ async: false , dataType: ...
7
votes
6answers
5k views

parsererror after jQuery.ajax request with jsonp content type

I am using jQuery Version 1.5.1 to do the following ajax call: $.ajax({ dataType: 'jsonp', data: { api_key : apiKey }, url: "http://de.dawanda.com/api/v1/" + resource + ".json", ...
5
votes
3answers
590 views

How to manage queues of ajax requests in jquery 1.5?

I have been testing the new deferred AJAX functions in jquery 1.5 and am impressed with their simplicity and power. There's a larger question I have related to the best way to queue up these ...
5
votes
1answer
2k views

jQuery jqXHR - cancel chained calls, trigger error chain

I am creating a ajax utility for interfacing with my server methods. I would like to leverage jQuery 1.5+ deferred methods from the object returned from the jQuery.ajax() call. The situation is ...
5
votes
2answers
799 views

jQuery version 1.5 - ajax - <script> tag timestamp problem

If I load some content with ajax (jQuery) which has a script tag in it, jQuery 1.5 adds the timestamp to the script tag src url. See example bellow. Example: content what I load with ajax: ...
4
votes
1answer
109 views

How can I capture which events were removed with unbind and re-apply them later?

How can I store which events were removed with unbind and re-apply them later? Suppose that I have this element: <div id="thediv">The Div</div> Which has a varying number of functions ...
4
votes
2answers
1k views

How to use jQuery Deferred with custom events?

I have two abstracted processes (e.g. managed within js objects using the revealing module pattern that do not expose their internals) that fire custom events when they complete. I want to perform an ...
4
votes
4answers
2k views

Is there a VSDoc file for jQuery 1.5?

Where can I find a VSDoc file for the 1.5 version of jQuery?
3
votes
3answers
70 views

How can I group a collection of elements by their adjacency?

Let's say I have a list that looks like this: <ul> <li id="q"></li> <li id="w"></li> <li id="e"></li> <li id="r"></li> <li ...
3
votes
2answers
3k views

Why is jqXHR.responseText returning a string instead of a JSON object?

I have an $.ajax() request with the dataType set to "json." The server is returning JSON with the correct mime type of "application/json." And yet the responseText in my jqXHR object is always a ...
3
votes
3answers
5k views

How to get response status code from jQuery.ajax?

In the following code, all I am trying to do is to get the HTTP response code from a jQuery.ajax call. Then, if the code is 301 (Moved Permanently), display the 'Location' response header: <?xml ...
3
votes
1answer
93 views

Ajax calls to encoded Internationalized domain names with jQuery 1.5 doesn't work in Internet Explorer?

Using jQuery 1.5 or 1.5.1, any ajax() calls to encoded Internationalized domain names (IDN) (like xn--bcher-kva.ch) seems to fail in Internet Explorer 8. It worked fine in jQuery 1.4.4 and also with ...
3
votes
1answer
2k views

jQuery 1.5 doesn't work on IE 9 RC

Internet Explorer RC 9 was released earlier today, but I can't get it to work with jQuery 1.5. It stops at this error: SCRIPT438: Object doesn't support property or method 'getElementsByTagName' ...
3
votes
1answer
756 views

JQuery 1.5 templates: JQuery 1.5 didn't render my template. How do you call JQuery 1.5 templates?

In this code, j correctly becomes an object: j.name, j.addr, j.city, j.state, and j.zip. However the success function has a JavaScript error of .tmpl() isn't a function. <script ...
3
votes
3answers
512 views

jquery 1.5 mock ajax

In jquery 1.5, what is the recommend approach for mocking ajax requests? Is it to use the ajax extension transports? http://api.jquery.com/extending-ajax/#Transports
2
votes
1answer
45 views

Problem using $.when() with post actions

when().then() pattern in the following situation: $.when(setServerValue("true")) .then(function(){ console.log('done setting new value'); performSomeOperation(); }) ...
2
votes
3answers
498 views

jquery, problem with ajax call with dataType is json

After upgrading to jQuery 1.5.2 I start to have problems with my ajax calls when returning json data. The error is (returned by templateGet() below): Ajax call failed: [object Object] ...
2
votes
1answer
351 views

jQuery 1.5.2 - really weird behavior using click() function

Using JQuery 1.5.2. Have a website that loads an initial splashscreen which animates some logo images. The script has a click() function to allow the user to click through and skip the animation. On ...
2
votes
2answers
581 views

Changed from JQuery 1.4 to 1.5.1 and getJson stopped working

Today on a website I was working on I changed the version of jQuery from 1.4 to 1.5.1, however this caused a function which relies on the getJson function to stop working, I have looked at the API and ...
2
votes
3answers
218 views

Can you stop a defered callback in jquery 1.5?

I am wondering say you have something like this // Assign handlers immediately after making the request, // and remember the jqxhr object for this request var jqxhr = $.ajax({ url: "example.php" }) ...
2
votes
1answer
271 views

Can you defer statusCode in jquery 1.5?

I see that they added a function for status codes statusCode(added 1.5)Map Default: {} A map of numeric HTTP codes and functions to be called when the response has the corresponding code. ...
2
votes
2answers
527 views

jQuery Simple Spy no longer works with jQuery 1.5

I'm trying to use Remy Sharp's Simple Spy (http://jqueryfordesigners.com/simple-jquery-spy-effect) with jQuery 1.5. It works fine with 1.4, but in 1.5 it does not load any additional comments after ...
2
votes
2answers
2k views

Upgrading from jQuery 1.3.2 to jQuery 1.5 (or 1.4)

I remember when jQuery 1.4 came out, there was a upgrade link and text where it said that there where stuff that was changed, and stuff we had to rewrite for it to work in 1.4. I can't find this link ...
2
votes
1answer
466 views

JQuery 1.5 Data Api Changes Impacting JQuery UI

I've just upgraded to jQ 1.5 and jQUI 1.8.9 and my sortables have started behaving very oddly. I've got linked sortables and when I drag items across they randomly seem to stop and it generally seems ...
2
votes
1answer
480 views

how to handle httpStatuscode correctly

I would like to react on http status-codes (like 200, 201 or 202) with the new feature (http://api.jquery.com/jQuery.ajax). But the function is ignoring my 201 and 202 callbacks. This error occures ...
2
votes
2answers
906 views

How to get pure XMLHTTPRequest object in jQuery 1.5?

My code works fine in jquery 1.4 and i try upgrade it to 1.5. But this part of code stop working - its standard beforeSend handler beforeSend: function (xhr, options) { // __forced_abort = false; // ...
2
votes
1answer
300 views

JQuery 1.5 selector error

Since, upgrading to JQuery 1.5, the following selector no longer works: var selectedTab = $('div.menu > ul > li > a[href=service.html]'); The error message is: uncaught exception: ...
2
votes
3answers
581 views

Jquery 1.5 $.load not working

The following is working in jquery 1.4.4 but not in 1.5. Please try it on your end and confirm. $('body').load('test.html');
1
vote
1answer
64 views

jQuery Deferreds and Managing the Order of Code Execution

I have been trying to understand the benefits of jQuery's Deferred functionality. If I understand correctly Deferred's doesn't offer an alternative to callbacks but rather offers better management of ...
1
vote
0answers
245 views

JQuery how to retrieve json result form jqXHR object

I've got the following situation: $.when(jsonCall1(),jsonCall2()) .then(function(a,b){ var json1 = a[2].responseText; var json2 = b[2].responseText; --- Do some stuff ...
1
vote
2answers
1k views

JQM (jQueryMobile) HTML5 Form Validation

I've found this h5validate plugin but having no luck with it when using it with jQM, anyone have any suggestions on html5 form validation w/ jQm? I have multiple forms that need to be validated, ...
1
vote
1answer
336 views

Firefox warnings

Should I worry about the Firefox warnings regarding jquery 1.5.2, f.x. Warning: reference to undefined property a[d.expando] Source File: ...
1
vote
1answer
86 views

ASP.NET isssue with jQuery 1.5

I am getting this error The state information is invalid for this page and might be corrupted when I use jQuery 1.5 but if I replace with jQuery 1.4 then it work fine. I want to know what is ...
1
vote
4answers
413 views

jquery checkbox attr change seems not to work

Does anyone have any idea why this code seems not to work? What am I doing wrong? JQuery 1.5.1 is used. JS code: $('#search_filters #discipline a').click(function(){ var checkbox = ...
1
vote
3answers
284 views

Significance / Usefullness / pupose of new jQuery.ajax way which returns the jqXHR object

as of 1.5/1.51 version of jQuery we can make an ajax request like this var jqxhr = $.ajax({ url: "example.php" }) .success(function() { alert("success"); }) .error(function() { ...
1
vote
2answers
259 views

jQuery 1.5 AJAX syntax

I'm learning the new jQuery $.ajax callback syntax. Q: If I move req.success outside of the $('td.showcities').click function, then how should I refer to $tr? // When the user clicks on a state, the ...
1
vote
1answer
206 views

issue when Upgrading to jQuery 1.5.1

the delete link don't work when I upgrading from jquery 1.5 to jquery 1.5.1: Demo: http://jsfiddle.net/EfsGN/
1
vote
1answer
424 views

How to get the ajax results for multiple deferred calls in jquery 1.5?

I am trying to get the jquery 1.5 deferred work as shown in the code below. <script type="text/javascript"> var appUrls = { GetDataUrl : '@Url.Action("GetData")' ...
1
vote
0answers
883 views

jQuery.delay() is not a function error

I have used the same code as below jQuery(elem).slideDown("slow").delay(3000).slideUp("slow"); That was worked fine some months before. Now it is showing error as ...
0
votes
1answer
29 views

callback is added in JSON request of jQuery

I have these javascript codes in a page: <script type="text/javascript"> $(function() { $.getJSON("http://example.com/index.php/grid/fetch-grid", function(jsonData) { if ...
0
votes
0answers
96 views

SCRIPT438: Object doesn't support property or method 'slice'

I'm getting the following error only in IE7 and IE8. It works fine in IE9, FF and chrome. SCRIPT438: Object doesn't support property or method 'slice' jquery-1.5.min.js?1326102067, line 16 ...
0
votes
0answers
60 views

ajax call cannot be completed with 1.7 version

When I try to call ajax using jquery 1.5/1.7 it gives an error "No transport" (the same jquery works fine with 1.3). To avoid this I tried using "datatype" parameter with the $.ajax function as ...
0
votes
1answer
210 views

How do I use two different versions of jQuery side by side?

I'm writing a wrapper for Yahoo Web Analytics at work. My wrapper has jQuery 1.5.3 built-in, while the page where I'm installing the wrapper uses jQuery 1.4.3. When I include my wrapper, their site ...
0
votes
2answers
224 views

Will my site break if i migrate/upgrade jQuery 1.3 to 1.5?

Currently i am using jQuery 1.3.2. i would like to migrate/upgrade the same to jQuery 1.5? I am using some of the plugging as well. How can i make sure that it wouldn't break. I don't where it would ...
0
votes
0answers
65 views

Empty variables in jquery

I have this piece of jquery in my dialog: $('#newAdres').click(function(){ $('#fieldset-adres').css('display', 'block'); $('#fieldset-adres').dialog({ ...
0
votes
1answer
438 views

jQuery ajaxForm never enters success with file upload on jQuery1.5

I use a jquery form plugin to upload a file and get HTML (or text or anything at all) in the callback. This worked fine until 1.5, but as soon as I converted to 1.5, the callback never happens ONLY ...
0
votes
1answer
350 views

jquery tools overlay problem after update to jquery 1.5.2

This is just tricky. In a Community are a few hyperlinks, which opens an overlay. There is an iframe with the main content. With jquery_1.4.3 all works fine. All overlays opens and are well ...
0
votes
4answers
135 views

Jquery 1.5 breaks old 1.4 $.get calls

I recently upgraded to 1.5, and functions like: function showData(id) { $.get("/url/getdata", {id : id}, function(data) { $("#dialogData").html(data); $("#dialogData").dialog({width: 500, modal: ...

1 2