I have a html page which load 10 js files from server and 10 css files from server. First JS file contain jquery ready function.
$(document).ready(function(){
alert("Executed");
});
My question is when ready function will be executed ? Is it just after html is loaded(i believe loaded means HTML is rendered on browser here ) or all(HTML + JS + CSS) files loaded?
Also per mine understanding all JS/css file loading is asynchronous (i mean parallel multiple requests are made to load these files). Right ?