aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-07-20 21:59:52 +0000
committerJohn Resig <jeresig@gmail.com>2007-07-20 21:59:52 +0000
commitc47f6f8f523c8add478fbf5570a67015426f5b86 (patch)
treee3b2a35fcf1fd3e15ce56bc836bf1c8c994eeb78 /src/ajax
parent6c5bfffd20797a043355958b1f0d27717ebd20e7 (diff)
downloadjquery-c47f6f8f523c8add478fbf5570a67015426f5b86.tar.gz
jquery-c47f6f8f523c8add478fbf5570a67015426f5b86.zip
Completely reworked the evalScripts() code, fixing bugs #1332, #975, and #777.
Diffstat (limited to 'src/ajax')
-rw-r--r--src/ajax/ajax.js58
1 files changed, 9 insertions, 49 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index d72ddc6b7..fa047188a 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -75,15 +75,11 @@ jQuery.fn.extend({
data: params,
ifModified: ifModified,
complete: function(res, status){
+ // If successful, inject the HTML into all the matched elements
if ( status == "success" || !ifModified && status == "notmodified" )
- // Inject the HTML into all the matched elements
- self.attr("innerHTML", res.responseText)
- // Execute all the scripts inside of the newly-injected HTML
- .evalScripts()
- // Execute callback
- .each( callback, [res.responseText, status, res] );
- else
- callback.apply( self, [res.responseText, status, res] );
+ self.html(res.responseText)
+
+ self.each( callback, [res.responseText, status, res] );
}
});
return this;
@@ -110,24 +106,6 @@ jQuery.fn.extend({
*/
serialize: function() {
return jQuery.param( this );
- },
-
- /**
- * Evaluate all script tags inside this jQuery. If they have a src attribute,
- * the script is loaded, otherwise it's content is evaluated.
- *
- * @name evalScripts
- * @type jQuery
- * @private
- * @cat Ajax
- */
- evalScripts: function() {
- return this.find("script").each(function(){
- if ( this.src )
- jQuery.getScript( this.src );
- else
- jQuery.globalEval( this.text || this.textContent || this.innerHTML || "" );
- }).end();
}
});
@@ -656,9 +634,10 @@ jQuery.extend({
var status;
try {
status = isTimeout == "timeout" && "timeout" ||
- !jQuery.httpSuccess( xml ) && "error" ||
- s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
- "success";
+ !jQuery.httpSuccess( xml ) && "error" ||
+ s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
+ "success";
+
// Make sure that the request was successful or notmodified
if ( status != "error" && status != "timeout" ) {
// Cache Last-Modified header, if ifModified mode.
@@ -783,16 +762,12 @@ jQuery.extend({
// If the type is "script", eval it in global context
if ( type == "script" )
- jQuery.globalEval( data );
+ (new Function( data ))();
// Get the JavaScript object, if JSON is used.
if ( type == "json" )
data = eval("(" + data + ")");
- // evaluate scripts within html
- if ( type == "html" )
- jQuery("<div>").html(data).evalScripts();
-
return data;
},
@@ -823,21 +798,6 @@ jQuery.extend({
// Return the resulting serialization
return s.join("&");
- },
-
- // evalulates a script in global context
- // not reliable for safari
- globalEval: function( data ) {
- data = jQuery.trim( data );
- if ( data ) {
- if ( window.execScript )
- window.execScript( data );
- else if ( jQuery.browser.safari )
- // safari doesn't provide a synchronous global eval
- window.setTimeout( data, 0 );
- else
- eval.call( window, data );
- }
}
});