A short follow up on this item... How should we make this work in Firefox?
Code:
function toggleSibling()
{
if(window.event)
{
if (window.event.srcElement.nextSibling.style.display=="none")
window.event.srcElement.nextSibling.style.display = "block";
else
window.event.srcElement.nextSibling.style.display = "none";
}
else
// code for Mozilla, Firefox, Opera, etc. ????
{
alert('Your browser cannot handle this script');
}
}
thanks!
gabi.