source: branches/testa-x/js/topmenu.js @ 85

Last change on this file since 85 was 27, checked in by anonymous, 6 years ago

dispaly message for debug

File size: 199 bytes
Line 
1function topmenu_init() {
2    const nav = $('.nav');
3    $('li', nav)
4        .mouseover(function(e) {
5            $('ul', this).stop().show();
6        })
7        .mouseout(function(e) {
8            $('ul', this).stop().hide();
9        })
10}
Note: See TracBrowser for help on using the repository browser.