source:
trunk/spip/esqueleto-redcta/plugins/magusine/themes/cge/javascript.js
@
84
Last change on this file since 84 was 80, checked in by , 16 years ago | |
---|---|
File size: 368 bytes |
Rev | Line | |
---|---|---|
[80] | 1 | $(document).ready(function(){ |
2 | // fait marcher le menu a deux niveaux | |
3 | $('#navigation .niveau1').each(function(){ | |
4 | ||
5 | $(this).mouseover(function() { | |
6 | $(this).children('.ulniveau2').show(); | |
7 | }) | |
8 | ||
9 | $(this).mouseout(function() { | |
10 | $(this).children('.ulniveau2').hide(); | |
11 | }) | |
12 | }); | |
13 | ||
14 | //alert(jQuery.browser); | |
15 | ||
16 | ||
17 | ||
18 | ||
19 | }); |
Note: See TracBrowser
for help on using the repository browser.