Last change
on this file since 108 was
80,
checked in by guille, 16 years ago
|
el plugin completo
|
-
Property svn:executable set to
*
|
File size:
426 bytes
|
Rev | Line | |
---|
[80] | 1 | // deplacer l'image |
---|
| 2 | |
---|
| 3 | $(document).ready(function(){ |
---|
| 4 | lefooter=$("#navigation"); |
---|
| 5 | $(lefooter).remove; |
---|
| 6 | $("#contexte1").prepend(lefooter); |
---|
| 7 | |
---|
| 8 | // fait marcher le menu a deux niveaux |
---|
| 9 | $('#navigation').children('.niveau1').each(function(){ |
---|
| 10 | $(this).mouseover(function() { |
---|
| 11 | $(this).children('.ulniveau2').show(); |
---|
| 12 | }) |
---|
| 13 | |
---|
| 14 | $(this).mouseout(function() { |
---|
| 15 | $(this).children('.ulniveau2').hide(); |
---|
| 16 | }) |
---|
| 17 | }); |
---|
| 18 | |
---|
| 19 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.