Hi,
I am a newbie and I am stuck in this script can someone help me please,
Javescript:
function toggleT( objName, swi )
{
var theObj = docuemnt.getElementById(objName);
( swi == "s" ) ? theObj.style.visibility='visible' :
theObj.style.visibility='hidden';
}
HTML code:
<span id="course" onClick="toggleT('divtag58','s')" onMouseOut="toggleT('divtag58','h')">Designing w/Computers I</span></font></strong><span id="divtag58">
check check check<font color="#666666">woow</span>
this does not work. I think it something to do with Javascript and I can't figure whats wrong. It should work in all browsers.
Thanks in advance


Reply With Quote


Bookmarks