Stewart531
Programmer
I'm having trouble calling a user defined function when using onUnload, but I have no problem calling a javascript function using onUnload.
<BODY onUnload= alert('Testing')>
This works
<BODY onUnload="Test()">
Doesn't Work
function Test()
{
//code
}
Is there something wrong with the syntax?
Thanks,
Dave
<BODY onUnload= alert('Testing')>
This works
<BODY onUnload="Test()">
Doesn't Work
function Test()
{
//code
}
Is there something wrong with the syntax?
Thanks,
Dave