Wrap your existing function with a call to setTimeout, ie, replace your current:
jQuery(document).ready(function() {
....
});
with
jQuery(document).ready(function() {
setTimeout(function() {
....
}, 2000);
});
Wrap your existing function with a call to setTimeout, ie, replace your current:
jQuery(document).ready(function() {
....
});
with
jQuery(document).ready(function() {
setTimeout(function() {
....
}, 2000);
});