How do I unbind \"hover\" in jQuery?
This does not work:
$(this).unbind(\'hover\');
unbind() doesn't work with hardcoded inline events.
So, for example, if you want to unbind the mouseover event from , I found that $('#some_div').attr('onmouseover','') is a quick and dirty way to achieve it. 0 讨论(0) 查看其它8个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
, I found that $('#some_div').attr('onmouseover','') is a quick and dirty way to achieve it. 0 讨论(0) 查看其它8个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
$('#some_div').attr('onmouseover','')