diff options
author | John Resig <jeresig@gmail.com> | 2007-01-14 06:02:56 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-01-14 06:02:56 +0000 |
commit | 2bd21fe3b3e1231b6364aec5e61d7009979c6a99 (patch) | |
tree | 15d0b8902a5b374508ceccac510ced14535b3133 /src/ajax | |
parent | 8507faea6ed79e46a0461bec9b73879cd700e8ab (diff) | |
download | jquery-2bd21fe3b3e1231b6364aec5e61d7009979c6a99.tar.gz jquery-2bd21fe3b3e1231b6364aec5e61d7009979c6a99.zip |
Touched up the code a little bit, saving some bytes.
Diffstat (limited to 'src/ajax')
-rw-r--r-- | src/ajax/ajax.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 0c629b3b7..c1ad22eff 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -77,7 +77,7 @@ jQuery.fn.extend({ complete: function(res, status){ if ( status == "success" || !ifModified && status == "notmodified" ) // Inject the HTML into all the matched elements - self.attr("innerHTML", res.responseText) + self.html(res.responseText) // Execute all the scripts inside of the newly-injected HTML .evalScripts() // Execute callback @@ -121,7 +121,7 @@ jQuery.fn.extend({ * @cat Ajax */ evalScripts: function() { - return this.find('script').each(function(){ + return this.find("script").each(function(){ if ( this.src ) jQuery.getScript( this.src ); else @@ -590,7 +590,7 @@ jQuery.extend({ // if data available if ( s.data ) { // convert data if not already a string - if (s.processData && typeof s.data != 'string') + if (s.processData && typeof s.data != "string") s.data = jQuery.param(s.data); // append data to url for get requests if( s.type.toLowerCase() == "get" ) |