X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fajax.js;h=09aba1410777a959b356e1e1a742acae4e3820a8;hb=80a26a326696599dad5b0bf88f8fa8e242e711e5;hp=8261b44cc8efc5fecf6b375006e3a3e3fd655bb7;hpb=14b88f6019cd467c35a2c9e845740a61c153525e;p=jquery.git diff --git a/src/ajax.js b/src/ajax.js index 8261b44..09aba141 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -174,12 +174,12 @@ jQuery.extend({ } // Build temporary JSONP function - if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) { + if ( s.dataType == "json" && (s.data && jsre.test( s.data ) || s.url.match(jsre)) ) { jsonp = "jsonp" + jsc++; // Replace the =? sequence both in the query string and the data if ( s.data ) - s.data = s.data.replace(jsre, "=" + jsonp); + s.data = (s.data + "").replace(jsre, "=" + jsonp); s.url = s.url.replace(jsre, "=" + jsonp); // We need to make sure