Possible Duplicate:
JQuery - multiple $(document).ready … ?
What are the implications of having multiple javascript files, each with its own $(document).ready function?
What are the implications of having multiple javascript files, each with its own $(document).ready function? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
When having multiple things bind with the To get around the javascript scoping issues, just define cross-ready-event variables outside of the |
|||
|
|
|
All functions will be executed in the order they were bound. See the jQuery documentation:
So all functions are executed and you can influence the order in which they are executed. However, I would strongly advice against basing any logic in the execution order as this may proof pretty brittle. |
|||
|
|
|
nothing. They all will attach a lister to be executed when the document is ready. Only implication afaik is that they will be executed in the order they were attached. |
|||
|
|
|
All that function does is add an event handler to the onload event for the document, so by doing that you are simply making Javascript execute more than one thing upon finishing loading the page. There are no downsides to it performance wise. However, if you're having all of that stuff happen upon pageload, you might want to have one init.js file (or something similar) that calls all of the other functions upon pageload. This way it's all in one place and easier to manage. However, besdies readability and management, it's perfectly fine. |
|||
|
|