jQuery('#test .track, :not(.btn)').mousemove(function(e){
var el = e.target;
jQuery(el).mouseover(function (e) {
e.stopPropagation();
jQuery(this).addClass('highlight');
jQuery(this).click(function(){
jQuery('.active').removeClass('active');
show_data(this); // a small function for showing this class, css
})
}).mouseout(function () {
jQuery(this).removeClass('highlight');
});
});
このコードを連続してクリックすると、Firefox がクラッシュします。このコードを使用して、マウスの下の現在の DOM 要素を強調表示しています。