how can i load page after 2 seconds once when jquery script load code example
Example: jquery 1 second after page load
jQuery(document).ready(function() {
setTimeout(function() {
....
}, 2000);
});
jQuery(document).ready(function() {
setTimeout(function() {
....
}, 2000);
});