diff --git a/docs/_static/jquery-3.5.1.js b/docs/_static/jquery-3.5.1.js index 5093733..9907159 100644 --- a/docs/_static/jquery-3.5.1.js +++ b/docs/_static/jquery-3.5.1.js @@ -9218,6 +9218,11 @@ function ajaxConvert( s, response, jqXHR, isSuccess ) { // Convert response if prev dataType is non-auto and differs from current } else if ( prev !== "*" && prev !== current ) { + // Mitigate possible XSS vulnerability (gh-2432) + if ( s.crossDomain && current === "script" ) { + continue; + } + // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ];