Pregunta

es el hoverIntent plug-in compatible con Internet Explorer? Tengo problemas para conectarlo a la siguiente 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');
    });
}

Estoy usando el siguiente para otros navegadores pero no está funcionando en IE7

$('#top_mailing').hoverIntent(
  function () {
    $("#top_mailing_hidden").stop().slideDown('slow');
  }, 
  function () {
    $("#top_mailing_hidden").stop().slideUp('slow');
  }
);
¿Fue útil?

Solución

Yo diría que sí, ya lo estoy usando en esta página - http://trailroc.com/ ? p = equipo Revisé 7 y 8, no está seguro si funciona en IE6, ya no me importa.

Estoy usando jQuery 1.3.1 embargo:

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top