setTimerOut() code example
Example 1: timeout javascript
setTimeout(function(){
}, 2000);
Example 2: javascript settimeout
setTimeout(function(){ alert("Hello"); }, 3000);
Example 3: add set time out in jquery
$(".submit_wide").click(function () {
$(this).val('Please wait..');
$(this).attr('disabled', true);
setTimeout(function() {
$(this).attr('disabled', false);
$(this).val('Submit');
}, 2000);
});
Example 4: javascript settimeout
window.setTimeout(()=>{
console.log('1 second passed!');
}, 1000);