If i have a lot of functions on startup do they all have to be under one single:
$(document).ready(function() {
or can i have multiple:
$(document).ready(function() {
statements?
|
If i have a lot of functions on startup do they all have to be under one single:
or can i have multiple:
statements? |
||||
|
|
|
You can have multiple ones, but it's not always the neatest thing to do. Try not to overuse them, as it will seriously affect readability. Other than that , it's perfectly legal. See the below: http://www.learningjquery.com/2006/09/multiple-document-ready Try this out:
You'll find that it's equivalent to this, note the order of execution:
It's also worth noting that a function defined within one
output was:
|
|||||||||||
|
|
You can use multiple. But you can also use multiple functions inside one document.ready as well:
|
|||||||||||||
|
|
Yes you can easily have multiple blocks. Just be careful with dependencies between them as the evaluation order might not be what you expect. |
|||
|
|
|
As written here, on jQuery's wiki: yes it is possible to have multiple $(document).ready() calls. However, I don't think you can know in which way they will be executed. |
|||||
|
|
Yes it is possible but you can better use a div #mydiv and use both
|
|||
|
|
|
Yes, it's perfectly ok.but avoid doing it without a reason. For example I used it to declare global site rules seperately than indivual pages when my javascript files were generated dynamically but if you just keep doing it over and over it will make it hard to read. Also you can not access some methods from another
With the old |
|||
|
|
|
Yes you can. Multiple document ready sections are particularly useful if you have other modules haging off the same page that use it. With the old Now all functions specified are queued/stacked (can someone confirm?) regardless of which document ready section they are specified in. |
|||
|