From: Timo Tijhof Date: Thu, 22 Nov 2012 02:47:59 +0000 (-0500) Subject: Set async to true instead of async (prop vs. attr). Closes gh-1039 X-Git-Tag: 1.9.0b1~97 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4fed8eb86d4b987524fd16e6c4e7be351301f38b;p=jquery.git Set async to true instead of async (prop vs. attr). Closes gh-1039 --- diff --git a/src/ajax/script.js b/src/ajax/script.js index 48b329ae3..ada74ff67 100644 --- a/src/ajax/script.js +++ b/src/ajax/script.js @@ -40,7 +40,7 @@ jQuery.ajaxTransport( "script", function(s) { script = document.createElement( "script" ); - script.async = "async"; + script.async = true; if ( s.scriptCharset ) { script.charset = s.scriptCharset;