次のJavaScriptをマウスオーバーイベントからページロードイベントに調整したいのですが、これまでのところ失敗しています。明確にするために、ページが読み込まれたときにスクリプトをアクティブにしたいのです。コードは次のとおりです。
$(function() {
$('#sdt_menu2 > li').bind('mouseenter',function(){
var $elem = $(this);
$elem.find('img')
.stop(true)
.andSelf()
.find('.sdt_wrap')
.stop(true)
.andSelf()
.find('.sdt_active')
.stop(true)
.animate({'height':'45px'},300,function(){
var $sub_menu = $elem.find('.sdt_box');
if($sub_menu.length){
}
});