gatwick2002
Programmer
IE 6.0
I need to write something like
function a()
{
alert("QQQ");
}
function b(fn)
{
fn();
}
function c()
{
b(a);
}
to see "QQQ" msgbox. How can I do it? THe code I posted doesnt do it.
I need to write something like
function a()
{
alert("QQQ");
}
function b(fn)
{
fn();
}
function c()
{
b(a);
}
to see "QQQ" msgbox. How can I do it? THe code I posted doesnt do it.