JavaScript settimeut
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
Grepper
setTimeout(function(){
alert("Sup!");
}, 2000);//wait 2 seconds
setTimeout(function(){ alert("Hello"); }, 3000);
var delayInMilliseconds = 1000; //1 second
setTimeout(function() {
//your code to be executed after 1 second
}, delayInMilliseconds);
setTimeout(function(){
//code goes here
}, 2000); //Time before execution
setTimeout(() => { alert('Hello') }, 1000)
$(".submit_wide").click(function () {
$(this).val('Please wait..');
$(this).attr('disabled', true);
setTimeout(function() {
$(this).attr('disabled', false);
$(this).val('Submit');
}, 2000);
});