This commit is contained in:
Jörn Zaefferer 2006-12-19 19:06:36 +00:00
parent 42785b1c1d
commit dd27ea5830
2 changed files with 3 additions and 0 deletions

View file

@ -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... });
*

View file

@ -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
* });