delay the method calling by 10 seconds jquery code example
Example 1: jquery delay 1 second
setTimeout(
function()
{
//do something special
}, 1000);
Example 2: jquery delay to call function
$(this).delay(1000).queue(function() {
// your Code | Function here
$(this).dequeue();
});