How is jQuery checking if the document is loaded? How it is checking that the document load is finished?
|
Check out the function bindReady in the source code. They bind to the DOMContentLoaded event (or onreadystatechange on some browsers). They also have a fallback to the regular load event, in case the DOMContentLoaded isn't supported or not fired for other reasons. On browsers supporting it, they use this call:
On IE <9:
The second instance of |
||||
|
|
|
So there is a little bit going on behind the scenes but this is the gist of it, directly for the jQuery source:
So for most browsers (Mozilla, Opera and Webkit) there is a IE acts a little differently as they don't have the I hope that makes sense and helps you out :) |
|||
|
|
|
jQuery doesn't do anything that JavaScript cannot/does not do - it's simply a JavaScript framework/library. What it does is provide wrappers around JavaScript events that browsers implement, such as For example, IE didn't really support
If you really want to see what's being done by jQuery, you should check out the jQuery source. |
||||
|
|