diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2007-02-17 20:34:15 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2007-02-17 20:34:15 +0000 |
commit | ef1bd0453245c3b619cad33303e167899581067a (patch) | |
tree | d7c1702629b8b7e80d92bf2bab8dbf8e02162677 /src | |
parent | 5c9fadbc5da45edddf34474ec6a1553c5b6ac978 (diff) | |
download | jquery-ef1bd0453245c3b619cad33303e167899581067a.tar.gz jquery-ef1bd0453245c3b619cad33303e167899581067a.zip |
Rolling back fix for #914 due to firefox double evaling scripts
Diffstat (limited to 'src')
-rw-r--r-- | src/ajax/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index b513e630d..7eb1b91c3 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.html(res.responseText) + self.attr("innerHTML", res.responseText) // Execute all the scripts inside of the newly-injected HTML .evalScripts() // Execute callback |