source:
www/js/menu.js
@
3a2ae91
Last change on this file since 3a2ae91 was 843c58d, checked in by pawelk <pawelk@…>, 17 years ago | |
---|---|
|
|
File size: 325 bytes |
Line | |
---|---|
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.