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

Your email address will not be published. Required fields are marked *

You May Also Like

JavaScript supports different types of operators that includes Assignment Operator JavaScript supports different types if Assignment Operators like = +=...
Assume that you have an angle in degree and you wish to convert it to radians in JavaScript so that...
The JavaScript elements and statements are placed within the script tag within the HTML page. You can specify the language...