denemante
08-22-2006, 02:37 PM
Hi people,
I need to make my main left nav have flyout menus so people can get to subpages from the main nav instead of having to go though step pages.
It works great. I know that SEs don't read javascript. But here is the code being used to "fly out" the menu. Do you think this is OK and will still get indexed? All the main javascript that makes this work is in the <head>.
FIRING CODE
<div id="menTrig1" style="position: absolute; left:13px; top:190px; width:170px; z-index:1; height: 17px;"><a href="www.somesite.com/page1.htm." onMouseOver="P1_autoLayers(0,'flym1')"></a></div>
STUFF THAT FLIES OUT
<div id="flym1" style="position: absolute; left:157px; top:244px; width:54px; z-index:9; visibility: hidden; height: 86px;">
<table width="148" border="0" cellpadding="0" cellspacing="0" class="mainText">
<tr>
<td align="left" valign="top"> <table width="125" border="1" cellpadding="3" cellspacing="0" bordercolor="#CCCCCC">
<tr>
<td bordercolor="CBDABB" bgcolor="ffffff" class="nav"><a class="type2" href="page2.htm">Page2</a></td>
</tr>
<tr>
<td width="140" bordercolor="CBDABB" bgcolor="ffffff" class="nav"><a class="type2" href="page3.htm">Page3</a></td>
</tr>
<tr>
<td height="21" bordercolor="CBDABB" bgcolor="ffffff" class="nav"><a class="type2" href="page4.htm">Page4</a></td>
</tr>
</table></td>
</tr>
</table>
</div>
I need to make my main left nav have flyout menus so people can get to subpages from the main nav instead of having to go though step pages.
It works great. I know that SEs don't read javascript. But here is the code being used to "fly out" the menu. Do you think this is OK and will still get indexed? All the main javascript that makes this work is in the <head>.
FIRING CODE
<div id="menTrig1" style="position: absolute; left:13px; top:190px; width:170px; z-index:1; height: 17px;"><a href="www.somesite.com/page1.htm." onMouseOver="P1_autoLayers(0,'flym1')"></a></div>
STUFF THAT FLIES OUT
<div id="flym1" style="position: absolute; left:157px; top:244px; width:54px; z-index:9; visibility: hidden; height: 86px;">
<table width="148" border="0" cellpadding="0" cellspacing="0" class="mainText">
<tr>
<td align="left" valign="top"> <table width="125" border="1" cellpadding="3" cellspacing="0" bordercolor="#CCCCCC">
<tr>
<td bordercolor="CBDABB" bgcolor="ffffff" class="nav"><a class="type2" href="page2.htm">Page2</a></td>
</tr>
<tr>
<td width="140" bordercolor="CBDABB" bgcolor="ffffff" class="nav"><a class="type2" href="page3.htm">Page3</a></td>
</tr>
<tr>
<td height="21" bordercolor="CBDABB" bgcolor="ffffff" class="nav"><a class="type2" href="page4.htm">Page4</a></td>
</tr>
</table></td>
</tr>
</table>
</div>