Adsense

setTimeout and closure

Eg1

// ----- works in FF, not in IE  
var msg = "Hello World";
setTimeout(doAlert, 1, msg);
function doAlert(msg)
{
    alert(msg);
}
Eg2

// ------ works in both IE, FF
var msg = "Hello World";
setTimeout(function() {doAlert(msg);}, 1);
function doAlert(msg)
{
    alert(msg);
}

No comments:

Post a Comment

comment here

newest questions on wordpress