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.
|
||||
*
|
||||
* 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... });
|
||||
*
|
||||
|
|
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.
|
||||
* 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
|
||||
* });
|
||||
|
|
Loading…
Reference in a new issue