JavaScript setTimeout()
JavaScript setTimeout() function used to repeats the execution of the function continuously. Another word we can say that JavaScript setTimeout() function use to create a timing events.
Here is the example when click on button after 2 second alert box will be open.
JavaScript setTimeout() Function
Syntax
var time=setTimeout("javascript_statement", milliseconds);
Example
<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaScript setTimeout with Alert Box</title>
</head>
<body>
<script type="text/javascript">
function tMessage() {
var time=setTimeout("alert('When you click press, Alert box will open in 2 seconds.')", 2000);
}
</script>
<form>
<input type="button" value="Open Alert Box" onClick="tMessage()"/>
</form>
</body>
</html>
Example Result