Load jQuery when the HTML document is loaded:
$(document).ready(function() { // business code }); |
Load jQuery when all the images on a page have also loaded:
$(window).load(function() { // business code }); |
Load jQuery when the HTML document is loaded:
$(document).ready(function() { // business code }); |
Load jQuery when all the images on a page have also loaded:
$(window).load(function() { // business code }); |
You must be logged in to post a comment.