source: trunk/spip/2.1/extensions/magusine-portage2.1/themes/samarcandefour/javascript.js @ 756

Last change on this file since 756 was 756, checked in by guillermoacedo@…, 14 years ago

se agrego la correccion de magusine para 2.1 basica

  • Property svn:executable set to *
File size: 368 bytes
Line 
1 $(document).ready(function(){
2   // fait marcher le menu a deux niveaux
3   $('#navigation .niveau1').each(function(){
4        $(this).mouseover(function() {
5        $(this).children('.ulniveau2').show();         
6        })
7       
8        $(this).mouseout(function() {
9        $(this).children('.ulniveau2').hide();         
10        })
11        });
12       
13        $("a[href^='http']").attr('target','_blank');
14 });
Note: See TracBrowser for help on using the repository browser.