Hi all,
My following code is working fine in Firefox. But not in IE. Can anybody help me?
Code:
function show(rid)
{
current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
if (document.getElementById(rid).style.display=='') current='block';
document.getElementById(rid).style.display = current;
}