how to apply delay in js code example
Example 1: javascript HOW set delay
var delayInMilliseconds = 1000; //1 second
setTimeout(function() {
//your code to be executed after 1 second
}, delayInMilliseconds);
Example 2: wait 0.5 after function javascript
statement1();
setTimeout(function() {
statement2();
}, 500);