Hello
I am using the following function to show / hide a <tr> onclick of a radio button however it does not work in Firefox. Works fine in IE. Please help??
function toggleT(_w,_h)
{
if (document.all)
{
if (_h=='s') eval("document.all."+_w+".style.display='block';");
if (_h=='h') eval("document.all."+_w+".style.display='none';");
}
}
Am fireing like so:
To show - toggleT('issueSubject','s')
To hide - toggleT('issueSubject','h')
Thanking you
I am using the following function to show / hide a <tr> onclick of a radio button however it does not work in Firefox. Works fine in IE. Please help??
function toggleT(_w,_h)
{
if (document.all)
{
if (_h=='s') eval("document.all."+_w+".style.display='block';");
if (_h=='h') eval("document.all."+_w+".style.display='none';");
}
}
Am fireing like so:
To show - toggleT('issueSubject','s')
To hide - toggleT('issueSubject','h')
Thanking you