ie-set_timeout.js

[ With the Script ]   |   Without the Script



	

User Agent:

JavaScript Code:

setTimeout(function(arg1, arg2, arg3) {

	document.getElementById('output').innerHTML = 'Argument 1 is: ' + arg1 + '<br/>Argument 2 is: ' + arg2 + '<br/>Argument 3 is: ' + arg3; 

}, 1000, 'Hello', 'World', '!!!');

Output: