We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0ea80e commit 2d1247aCopy full SHA for 2d1247a
src/ajax/jsonp.js
@@ -41,7 +41,7 @@ jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
41
if ( replaceInUrl ) {
42
s.url = url.replace( rjsonp, "$1" + callbackName );
43
} else if ( replaceInData ) {
44
- s.data = data.replace( rjsonp,"$1" + callbackName );
+ s.data = data.replace( rjsonp, "$1" + callbackName );
45
} else if ( hasCallback ) {
46
s.url += ( rquestion.test( url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
47
}
0 commit comments