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