hey all,
here's the deal. i've got a link on a page that when you mouse over displays a box of text. it works quite well in IE, but won't work in firefox. here's the important snip of my code:
link on the page
the fill for the link
is there any way to get this to display in firefox? thanks for the help!
here's the deal. i've got a link on a page that when you mouse over displays a box of text. it works quite well in IE, but won't work in firefox. here's the important snip of my code:
link on the page
Code:
<a href="##" onMouseOver="stm(Text[0],Style[0]);" onMouseOut="htm();" class="fieldtext" onClick="javascript: resetSubmit(1);">Security</a>
Code:
<div id="PersonalIdTip" style="visibility:hidden;position:absolute;z-index:1000;top:-100"></div> <script language="JavaScript1.2" type="text/javascript"> Text[0]=["","there's text here"] Style[0]=["##218CDE","##FFF9D5","","center","Verdana",2,"##333333","##ECF2F9","","","",2,251,,1,"##218CDE",4,,0.3,75,4,"##666666",1,,-2,19,"#request.imagesroot#/m2/m2_lock.jpg",] var TipId = "PersonalIdTip" ; var FiltersEnabled = 1; </script>
Comment