11 lines
198 B
JavaScript
Executable file
11 lines
198 B
JavaScript
Executable file
$(function() {
|
|
$('#nav li').hover(
|
|
function() {
|
|
$('ul', this).slideDown(50); //show submenu
|
|
},
|
|
function() {
|
|
$('ul', this).slideUp(50); //hide submenu
|
|
})
|
|
|
|
});
|