how to wait for 1 second in javascript code example

Example 1: settimeout jquery

setTimeout(function(){ alert("Hello"); }, 3000);

Example 2: javascript wait 1 second

setTimeout(function(){ 
    console.log("Ready")
}, 1000);

Example 3: javascript wait 1 second

setTimeout(() => {console.log('1 second finished!')}, 1000);

Example 4: javascript wait 10 seconds

setTimeout(function () {
        // ...
    }, 10000);

// or

.then(() => {
  // ...
  ({ timeout: 10000 });
      });

Example 5: 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);
});