Possible Duplicate:
Javascript Load Order
If we have a number of script tags in the header of the HTML page then is it necessary that they will be rendered in a serial fashion or can they reder in any order. To be more specific, I have script tags in head part of HTML and they are only meant for loading .js files. Now if a script tag comes earlier does it mean that it will be render earlier and no other .js file will be loaded until current file has been loaded. Also if we have two functions both with same name then by placing one of the functions in script tag (inline) ensures that only this function will get called when a call to this duplicate name function is made.
Thanks, Jack