I have a menu that I'm including via PHP..this menu uses JS rollovers. I would like to be able to highlight the correct part of the menu, depending on current URL location of the browser..
doable? in JS? php?
thanks!
doable? in JS? php?
thanks!
Code:
<a href="index.php?mn=gallery"
onmouseover="changeImages('menu_04', '<?=RURL;?>images/menu_04-over.gif'); return true;"
onmouseout="changeImages('menu_04', '<?=RURL;?>images/menu_04.gif'); return true;"
onmousedown="changeImages('menu_04', '<?=RURL;?>images/menu_04-over.gif'); return true;"
onmouseup="changeImages('menu_04', '<?=RURL;?>images/menu_04-over.gif'); return true;">
<img name="menu_04" src="

Comment