Ready Method

Provides a way of running javascript only when the document object model is safe to manipulate.
The anonymous function is run when the page is ready.
$ and jQuery are symnonyms


jQuery(document).ready(function() { 
});

$(document).ready(function() {
});

jQuery(function() { 
});

$(function() {
});


© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited TopPrevNext