source:
www/js/menu.js
@
44f59b8
| Last change on this file since 44f59b8 was 843c58d, checked in by pawelk <pawelk@…>, 17 years ago | |
|---|---|
|
|
| File size: 325 bytes | |
| Rev | Line | |
|---|---|---|
| [843c58d] | 1 | function menu_select_element(el_menu, is_selected) { |
| 2 | ||
| 3 | if(is_selected) { | |
| 4 | el_menu.style.background = '#00FF66'; | |
| 5 | el_menu.style.cursor = 'hand'; // for IE | |
| 6 | el_menu.style.cursor = 'pointer'; | |
| 7 | } | |
| 8 | else { | |
| 9 | el_menu.style.background = '#CCFF99'; | |
| 10 | el_menu.style.cursor = 'default'; | |
| 11 | } | |
| 12 | return true; | |
| 13 | } |
Note: See TracBrowser
for help on using the repository browser.