Disclaimer: Do not try this at home
Why, if I am using jQuery, does $($) freeze the page?
|
Disclaimer: Do not try this at home Why, if I am using jQuery, does |
|||||||||||||||
|
|
The function passed to Another explanation:
|
|||||||||||||||||||||
|
|
Now this is what I call "jQueryception." You're calling whole jQuery library within jQuery. More information; When you call "$" (defined as jQuery core function by jQuery library) it initializes the jQuery and tries to call the defined function if it has one. When you actually call "$($);" you'll be calling jQuery inside jQuery and it'll be calling jQuery again and again. From jQuery 1.7.1 source code;
And
As you can see, when you call $($); it tries to call jQuery with the name of your function and if you call it with jQuery again same thing will happen endlessly as I've explained before. |
|||||||||||||||||||
|
|
The Thus you end up with a infinite recursion starting when |
|||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.