$(document).ready(function(){
$("#main1").children("li").hover(function(){
$(this).find("ul").slideDown("slow"); }, function() {
$(this).find("ul").slideUp('slow'); } );
})
スライド ドロップダウン サブメニューを作成する上記のコードは、Firefox では完全に機能しますが、IE では機能しません。解決策はありますか?