I\'m looking for a way to load jquery after the page is fully loaded. well there are lots of questions and answers about it in here, but all describe how to run a scri
You can either use .onload function. It runs a function when the page is fully loaded including graphics.
window.onload=function(){ // Run code };
Or another way is : Include scripts at the bottom of your page.