(I apologize if this is an extremely basic question. I\'m a bit of an HTML noob.)
In HTML5, is the relative ordering within the element, o
To increase the performance of html page load, it is recommended that you use Javascript tag
in the end of the body and css
rule in the head
. Precedence need to be maintain when other script
or css
is referenced in one of the file which should be there before the file which is referencing it.
We can consider a simple example that. jquery.js
file always be at top of the othes js
files because, other files rely on that jquery
file.
It should be noted that scripts are interpreted, so there ordering is important.