|
Last change
on this file since 26 was
25,
checked in by anonymous, 6 years ago
|
|
use localstorage to store/restore settings
|
|
File size:
419 bytes
|
| Line | |
|---|
| 1 | function topmenu_init0() { |
|---|
| 2 | const nav = $('.nav'); |
|---|
| 3 | $('li', nav) |
|---|
| 4 | .mouseover(function(e) { |
|---|
| 5 | $('ul', this).stop().slideDown('fast'); |
|---|
| 6 | }) |
|---|
| 7 | .mouseout(function(e) { |
|---|
| 8 | $('ul', this).stop().slideUp('fast'); |
|---|
| 9 | }) |
|---|
| 10 | } |
|---|
| 11 | function topmenu_init() { |
|---|
| 12 | const nav = $('.nav'); |
|---|
| 13 | $('li', nav) |
|---|
| 14 | .mouseover(function(e) { |
|---|
| 15 | $('ul', this).stop().show(); |
|---|
| 16 | }) |
|---|
| 17 | .mouseout(function(e) { |
|---|
| 18 | $('ul', this).stop().hide(); |
|---|
| 19 | }) |
|---|
| 20 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.