From c47f6f8f523c8add478fbf5570a67015426f5b86 Mon Sep 17 00:00:00 2001 From: John Resig Date: Fri, 20 Jul 2007 21:59:52 +0000 Subject: Completely reworked the evalScripts() code, fixing bugs #1332, #975, and #777. --- src/jquery/jquery.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/jquery/jquery.js') diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 2f3bc02e5..f54ee30a5 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1171,9 +1171,14 @@ jQuery.fn = jQuery.prototype = { obj = this.getElementsByTagName("tbody")[0] || this.appendChild(document.createElement("tbody")); jQuery.each( a, function(){ - fn.apply( obj, [ clone ? this.cloneNode(true) : this ] ); + if ( jQuery.nodeName(this, "script") ) { + if ( this.src ) + jQuery.ajax({ url: this.src, async: false, dataType: "script" }); + else + (new Function( this.text || this.textContent || this.innerHTML || "" ))(); + } else + fn.apply( obj, [ clone ? this.cloneNode(true) : this ] ); }); - }); } }; -- cgit v1.2.3