Is it bad to have multiple $(document).ready(function() {}); on your page? I have a website where I load different things at different times. I fire off those partial postback functions inside $(document).ready() but i have about 4 or 5 on the page at once. Is this a bad practice? Specifically, will it cause any performance issues?
|
|
||||
|
|
closed as not constructive by Gordon♦ May 9 at 21:47
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
This answer is no longer relevant. Please see other posts below for more up-to-date jQuery $.ready() impacts. This post is over 3 years old. See: http://jsperf.com/docready/11
|
||||
|
|
|
The answer is actually "Yes it deters performance": |
|||
|
|
No it is fine to have as many as you want. A shorter, much more elegant way to do this is |
||||
|
|
|
If it's on the same page I would personally put them all in the same place so that you can't be caught out by forgetting one of the things happening on load. I doubt the performance implications are that significant though. Have you tried benchmarking the page with them all together and apart? |
|||
|
|
