diff options
author | Mike Alsup <malsup@gmail.com> | 2007-01-01 17:29:31 +0000 |
---|---|---|
committer | Mike Alsup <malsup@gmail.com> | 2007-01-01 17:29:31 +0000 |
commit | 407ba8308cc540d5b351041c7ead317920b70347 (patch) | |
tree | c04ca6c6e5fce28c01579d3da0afdb01faa706c9 | |
parent | 41f62e13643462a88fa7d9015346196f3d37b966 (diff) | |
download | jquery-407ba8308cc540d5b351041c7ead317920b70347.tar.gz jquery-407ba8308cc540d5b351041c7ead317920b70347.zip |
update target of evalScripts test
-rw-r--r-- | src/jquery/coreTest.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/coreTest.js b/src/jquery/coreTest.js index d7fa5c7cc..dcb00abea 100644 --- a/src/jquery/coreTest.js +++ b/src/jquery/coreTest.js @@ -434,7 +434,7 @@ test("evalScripts() with no script elements", function() { url: 'data/text.php?' + new Date().getTime(),
success: function(data, status) {
ok ( true, 'before evalScripts()');
- jQuery('#output').html(data).evalScripts();
+ jQuery('#foo').html(data).evalScripts();
ok ( true, 'after evalScripts()');
start();
}
|