HomeJavaScriptDisplay Alert box after 10 Seconds using JavaScript setTimeout() Method

Display Alert box after 10 Seconds using JavaScript setTimeout() Method

The setTimeout method in JavaScript evaluates an expression after specified number of milliseconds and executes only once .

How to display Alert box after 10 Seconds using JavaScript setTimeout() Method

For example , if you want to display an alert message to the user after 10 seconds , you can use the below code snippet.

<script>
setTimeout(function(){alert("Ginktage.com")},10000);
</script>

Leave a Reply

You May Also Like

You might want to filter an array in JavaScript by passing the filter criteria and return the filtered array. In...
You can flatten a 2-D array in JavaScript using the concat and apply method as shown in the below code...
Assume that you have an angle in degree and you wish to convert it to radians in JavaScript so that...