jquery after 3 seconds of page load code example
Example: jquery 1 second after page load
jQuery(document).ready(function() {
setTimeout(function() {
....
}, 2000);
});
jQuery(document).ready(function() {
setTimeout(function() {
....
}, 2000);
});