vote up 0 vote down star

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.

flag

2 Answers

vote up 0 vote down check

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.

link|flag
Thank you. This seems to have done it. I just need to make some graphics and it'll be done. – Jose Sep 1 at 2:55
vote up 1 vote down

This would give some idea

link text

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.