Is placing <script> tags in just before closing the <body> tag the same sa placing them in the <head> section and specifying a defer="defer" attribute?
Thank you.
|
Is placing Thank you.
| ||||
feedback
|
|
Yes/No. Yes because placing the defer tag waits until the document is loaded before executing. No because placing the
Also of note, the defer attribute of the script tag is not functional in all browsers. Edited: In regards to performance for faster loading pages you may want to look at this article it provides some guidelines including where to put script and css | |||||||||||||
feedback
|
When the document has finished parsing and at the end of the It's also important to note this only works for scripts with an external | |||
|
feedback
|
|
Generally yes, but the browsers do not guarantee they will execute JavaScript after loading the page unless you specify so (defer="defer"). | |||||||||||
feedback
|