settimeut jquery code example
Example 1: delay in javascript
setTimeout(function() {
//your code here
}, 1000);
Example 2: javascript set timeout
var timeToWait = 3000; // 1000 = 1 second
setTimeout(() => {
console.log("Text printed after 3 seconds");
}, timeToWait);