mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix for #468
This commit is contained in:
parent
42785b1c1d
commit
dd27ea5830
@ -101,6 +101,7 @@ jQuery.fn.extend({
|
|||||||
* otherwise $(document).ready() may not fire.
|
* otherwise $(document).ready() may not fire.
|
||||||
*
|
*
|
||||||
* You can have as many $(document).ready events on your page as you like.
|
* 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... });
|
* @example $(document).ready(function(){ Your code here... });
|
||||||
*
|
*
|
||||||
|
2
src/jquery/jquery.js
vendored
2
src/jquery/jquery.js
vendored
@ -162,6 +162,8 @@ var $ = jQuery;
|
|||||||
* technically, chainable - there really isn't much use for chaining against it.
|
* 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.
|
* 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(){
|
* @example $(function(){
|
||||||
* // Document is ready
|
* // Document is ready
|
||||||
* });
|
* });
|
||||||
|
Loading…
Reference in New Issue
Block a user