Say I have a simple function that alerts a message:
function callMessage(msg){
alert(msg);
}
Now when I call it like so, it does not work. Throws error "hey is not defined"
function sayHi(){
var hey = "hi there"
setTimeout("callMessage(hey)", 1000);
}
sayHi();
But when I call it inside an anonymous function it does work:
function sayHi(){
var hey = "hi there"
setTimeout(function(){callMessage(hey);}, 1000);
}
sayHi();
Why is the "hey" variable only visible when I put it inside an anonymous function?
setTimeout("var hey = 'hi there'; callMessage(hey)", 1000);– mindandmedia Mar 1 '12 at 15:49