From: Jörn Zaefferer <joern.zaefferer@gmail.com>
Date: Tue, 19 Dec 2006 19:06:36 +0000 (+0000)
Subject: Fix for #468
X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=dd27ea5830e0fb9116642a0e779ea18c31179379;p=jquery.git

Fix for #468
---

diff --git a/src/event/event.js b/src/event/event.js
index 9f90321..72ea29a 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 8cffb8e..025dd77 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
  * });