I'm trying to optimise my pages as much as possible which means trying to move the JS includes to the bottom of the page.
There are one or two pages on the site that require inline JavaScript.
Does anyone know if a browser will try and execute this before the includes have loaded?
I'm using jQuery so most stuff is already wrapped in:
Cheers!
Paul.
There are one or two pages on the site that require inline JavaScript.
Does anyone know if a browser will try and execute this before the includes have loaded?
I'm using jQuery so most stuff is already wrapped in:
Code:
jQuery(document).ready(function() {
});
Cheers!
Paul.