Simple question. If you include jQuery in a page of HTML, is there any initialization overhead before one uses any jQuery functions.
|
1
|
|
|
|
|
|
By virtue of simply including the jQuery script, you do indeed get some overhead. jQuery builds itself up inside an immediately executed function. In 1.3.2 the biggest things it does are for IE support:
It also does some smaller things like:
Keep in mind all this barely adds up to any noticeable lag, as others have suggested. |
||||||
|
|
|
Yes, a tiny bit. On my very fast machine, it seems to delay the page load by about 4ms. |
||
|
|
|
|
jQuery itself doesn't really do much to speak of at load time, but naturally downloading the script, parsing it and executing the inline code to define all its functions takes a little while. It's unlikely to be terribly significant in itself on a normal desktop browser. |
||
|
|
