aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-12-19 19:06:36 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-12-19 19:06:36 +0000
commitdd27ea5830e0fb9116642a0e779ea18c31179379 (patch)
tree063b1dc12e6cbd8ecc645addfdccee2863db1814 /src
parent42785b1c1dbdb51e798de90720a164731f495e44 (diff)
downloadjquery-dd27ea5830e0fb9116642a0e779ea18c31179379.tar.gz
jquery-dd27ea5830e0fb9116642a0e779ea18c31179379.zip
Fix for #468
Diffstat (limited to 'src')
-rw-r--r--src/event/event.js1
-rw-r--r--src/jquery/jquery.js2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/event/event.js b/src/event/event.js
index 9f9032125..72ea29aac 100644
--- a/src/event/event.js
+++ b/src/event/event.js
@@ -101,6 +101,7 @@ jQuery.fn.extend({
* otherwise $(document).ready() may not fire.
*
* You can have as many $(document).ready events on your page as you like.
+ * The functions are then executed in the order they were added.
*
* @example $(document).ready(function(){ Your code here... });
*
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js
index 8cffb8e87..025dd770b 100644
--- a/src/jquery/jquery.js
+++ b/src/jquery/jquery.js
@@ -162,6 +162,8 @@ var $ = jQuery;
* technically, chainable - there really isn't much use for chaining against it.
* You can have as many $(document).ready events on your page as you like.
*
+ * See ready(Function) for details about the ready event.
+ *
* @example $(function(){
* // Document is ready
* });