git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5943ff
)
Added test for bug #232
author
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Fri, 6 Oct 2006 14:14:00 +0000
(14:14 +0000)
committer
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Fri, 6 Oct 2006 14:14:00 +0000
(14:14 +0000)
src/ajax/ajax.js
patch
|
blob
|
history
diff --git
a/src/ajax/ajax.js
b/src/ajax/ajax.js
index
6e56fa4
..
2c63605
100644
(file)
--- a/
src/ajax/ajax.js
+++ b/
src/ajax/ajax.js
@@
-39,6
+39,13
@@
jQuery.fn.extend({
* start();
* });
*
+ * @test stop(); // check if load can be called with only url
+ * $('#first').load("data/name.php");
+ * setTimeout(function() {
+ * ok( $('#first').text() == 'ERROR', 'Check if load works without callback');
+ * start();
+ * }, 100);
+ *
* @name load
* @type jQuery
* @param String url The URL of the HTML file to load.