いくつかの関数をイベントにバインドしようとしています。次のコードは Chrome と FF では問題なく動作しますが、対応する IE のコードは何ですか?
$this.mouseenter(function(){
console.log("inside the mouse enter handler");
});
これを試しましたが、IEでは機能しませんでした:
$this.bind('mouseenter', function(){
console.log("inside the mouse enter handler");
});
少なくともIE 9で動作する必要があります。