This is when the whole page has finished loading. For example, this will wait for images to be finished loading, so that you can measure their widths and heights accurately. $(window).bind(“load”, function() { // code here });
Articles Tagged: Loaded
Check if jQuery is Loaded
if (typeof jQuery == ‘undefined’) { // jQuery IS NOT loaded, do stuff here. } css tricks