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);
}
// ----- 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