Javascript jQuery hoverIntent插件在Internet Explorer中工作吗?

Javascript jQuery hoverIntent插件在Internet Explorer中工作吗?,javascript,jquery,hoverintent,Javascript,Jquery,Hoverintent,该插件与Internet Explorer兼容吗?我无法将其插入以下JavaScript: if (jQuery.browser.msie === true) { jQuery('#top_mailing') .bind("mouseenter",function(){ $("#top_mailing_hidden").stop().slideDown('slow'); }) .bind("mouseleave",function(){ $("

该插件与Internet Explorer兼容吗?我无法将其插入以下JavaScript:

if (jQuery.browser.msie === true) {
  jQuery('#top_mailing')
    .bind("mouseenter",function(){
      $("#top_mailing_hidden").stop().slideDown('slow');
    })
    .bind("mouseleave",function(){
      $("#top_mailing_hidden").stop().slideUp('slow');
    });
}
我正在为其他浏览器使用以下内容,但它在IE7中不起作用

$('#top_mailing').hoverIntent(
  function () {
    $("#top_mailing_hidden").stop().slideDown('slow');
  }, 
  function () {
    $("#top_mailing_hidden").stop().slideUp('slow');
  }
);

我会说是的,因为我在这一页上使用它- 我检查了7和8,不确定它在IE6中是否有效,因为我不在乎

但我使用的是jQuery 1.3.1: