jqueryを使用してシンプルなメニューを作成していますが、ロールオーバー時に表示されたままにするのに問題があります。
これが私のjQです:
$('.process').hover(function(){
$('#dropdown').fadeIn(1000);
}, function(){
$('#dropdown').delay(1000).fadeOut();
});
$('#dropdown').mouseover(function() {
//Need something here to hold the menu
});
$('#dropdown').mouseleave(function() {
$(this).fadeOut();
});
上記で何が必要ですか?
これが半実用的な例です: