Last change
on this file since 84 was
80,
checked in by guille, 16 years ago
|
el plugin completo
|
-
Property svn:executable set to
*
|
File size:
372 bytes
|
Line | |
---|
1 | $(document).ready(function(){ |
---|
2 | // fait marcher le menu a deux niveaux |
---|
3 | $('#navigation').children('.niveau1').each(function(){ |
---|
4 | |
---|
5 | // sur clic du lien |
---|
6 | $(this).mouseover(function(){ |
---|
7 | // cache tous les ul de niveau2 |
---|
8 | $('#navigation .ulniveau2').hide(); |
---|
9 | // puis montre celui en cours |
---|
10 | $(this).children('.ulniveau2').show(); |
---|
11 | }); |
---|
12 | |
---|
13 | |
---|
14 | }); |
---|
15 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.