I currently started working on my school's website and have already encountered a problem. There has been a request to add a link to an existing menu that has been around for a couple of years. The menu is javascript and I really don't have any experience with it. I just know HTML. I think, but am not sure, that it's just mouseover and if so, i don't know how to edit that. Here is the school home page, the menu is on the left hand side. Is it simpler than I think to add a link to the menu? If so, how would I acheive that? Or would it be easier to just make a whole new updated menu? Thanks.
A:
Adding a new link is trivial. You just add a new row to the table on the left, and two elements. Basically just copy an earlier <tr>
link and change the text for your new link.
The javascript is in the <td>
element.
It looks like:
<a onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','MENU_r12_c1','images/MENU_r12_c1_f2.gif','images/MENU_r12_c1_f4.gif',1);" onclick="MM_nbGroup('down','navbar1','MENU_r12_c1','images/MENU_r12_c1_f3.gif',1);" target="_top" href="https://www2.ncrdc.wa-k12.net/scripts/cgiip.exe/WService=wcashmes71/fwemnu01.w">
You will need to change the numbers, such as r12 to r13, just follow the pattern by looking at the earlier links.
James Black
2009-08-29 04:55:21
Thank you. This seems to have done it. I just need to make some graphics and it'll be done.
Jose
2009-09-01 02:55:05