mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-31 17:19:59 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
9 lines
237 B
JavaScript
Executable file
9 lines
237 B
JavaScript
Executable file
jQuery(function(){
|
|
jQuery('ul.widgetMenuA.dhtml').find('li')
|
|
.hover(function(){
|
|
jQuery('>ul',this).show();
|
|
}
|
|
,function(){
|
|
jQuery('>ul',this).hide();
|
|
});
|
|
});
|