Window setTimeout() Method - Pass parameters to the time out function - Javascript Browser Object Model

Javascript examples for Browser Object Model:Window setTimeout

Description

Window setTimeout() Method - Pass parameters to the time out function

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myStartFunction()">Start</button>

<p id="demo"></p>

<p id="demo2" style="color:red;"></p>

<script>
var myVar;/*from  w  w w .j av a  2  s. c o  m*/

function myStartFunction() {
    myVar = setTimeout(function(){ alertFunc("First parameter", "Second parameter"); }, 2000);
}

function alertFunc(param1, param2) {
    document.getElementById("demo").innerHTML += "Hello ";

    document.getElementById("demo2").innerHTML = "Parameters passed to alertFunc(): <br>" + param1 + "<br>" + param2 + "<br>";
}
</script>

</body>
</html>

Related Tutorials