マウスが現在これを使用しているdivの上にある間、ホバー機能を常に起動させたいのですが、一度だけ起動します。マウスがどこにあるかを監視し、セクション 1 または 2 のどちらにあるかを示します。
$(".rating-image").mouseover(function(e){
var offset = $(this).offset();
where=(e.clientX - offset.left);
if(where<=28){alert('1');}
if(where>28){alert('2');}
});