In my application i am using
$(document).ready()
What is the difference between this and
$(document).onload()
|
In my application i am using
What is the difference between this and
|
||||
|
|
|
The See: $(document).ready vs. $(window).load Note that |
|||||
|
|
.ready() is called as soon as the page code is downloaded and parsed. .onload() is called when all the images/videos/etc are downloaded. Use .ready() for jQuery to work best, unless you have a specific reason for waiting until onload(). |
|||
|
|
|
.ready()
-From the jQuery API Docs .onload()
-From the HTML 4.01 Specification |
|||
|
|
|
All explained inside the jquery docs.
As an aside (and as suggested by yahoo) I always ensure my jquery/js scripts are included just before the body closing tag. That way you do not need to worry about window load or jquery ready functions. |
||||
|
|