Client Side Scripting

JS Including JS Internal When including JavaScript internally the code runs when the browser gets to it in a chronological order. So if the script is in the head it will fire before the content has loaded and if its before the body tag it will fire after. this becomes important when JS plugins are …

Client Side Customisation

CSS Including CSS Inline Including css inline allows for tag by tag manipulation of styling. If external stylesheets or internal styling applies to the same tags then the inline will overide the aforementioned includes. Inline CSS is not normally best practise for any kind of styling, it has mostly been kept in for legacy reasons. …