jquery liveでhoverは指定できないが同じようなことがべつの指定で出来るよ
http://stackoverflow.com/questions/2262480/jquery-live-hover
[html]
$(“#active”).live({
mouseenter: function() { $(this).attr(“src”,”../assets/images/doctor/content_btn_01_on.gif”) },
mouseleave:function() { $(this).attr(“src”,”../assets/images/doctor/content_btn_01.gif”) }
});
[/html]
コメントを残す