Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 625405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:18:21+00:00 2026-05-13T19:18:21+00:00

First off I apologize… I have posted this question before, but I did a

  • 0

First off I apologize… I have posted this question before, but I did a bad job of explaining it. I’m having trouble plugging hoverIntent into the following JavaScript… I need it to replace the mouseenter and mouseleave functions below. Just to be clear, I’m asking for help because I’m not very good with JavaScript syntax. The second code snippet below seems like it should work, but it does nothing and seems completely dead in Internet Explorer.

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');
    });
}

I’m using the following for other browsers, but it’s not functioning in Internet Explorer.

$('#top_mailing').hoverIntent(
  function () {
    $("#top_mailing_hidden").stop().slideDown('slow');
  }, 
  function () {
    $("#top_mailing_hidden").stop().slideUp('slow');
  }
);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T19:18:21+00:00Added an answer on May 13, 2026 at 7:18 pm

    I think I found the problem.

    You’re calling $('#top_mailing').hoverIntent(... twice. Once at the bottom of the hoverintent_r5.js file, and once in your custom.js file. Apparently IE doesn’t like that. Get rid of one or the other, and it should be fine.

    Probably better to keep all your code in your own js file. Otherwise it’s easy to forget about.

    EDIT: Avoiding the stop() issue.

    I prefer animate:

    $('#top_mailing').hoverIntent(
      function () {
        $("#top_mailing_hidden").stop().animate({height:150},'slow');
      }, 
      function () {
        $("#top_mailing_hidden").stop().animate({height:0},'slow');
      }
    );
    

    This way, when you need to stop and change directions, it will always know where to go. (0 and 150 in the example above.)

    Please note that this would require top_mailing_hidden to have clip:auto; overflow:hidden set.

    Since you’re using hoverIntent, there may be no need for the calls to stop(), since hoverIntent is meant to avoid those unintended mouseover events.

    Slightly off topic:

    Keep one thing in mind with your implementation. Since this is a form to fill out, users will likely (without even thinking) move their mouse out of the way when they start typing. That will cause the form to disappear.

    With that in mind, you may want to reconsider doing a mouseout event. You could always make it slide back up when the user submits the form, with an optional ‘Cancel’ or ‘Close’ button.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First off, I apologize if this question has been asked before. I've done a
First off, apologies if this question has been asked before but I couldn't find
First off, I apologize if this has been asked before. I can't seem to
First off, let me apologize if this has been asked already, but I can’t
First of all I apologize in advance for this question, a bit off the
Ok, first off, I applogize if this question has been asked before, I've spent
First off, please accept my apologies if this question is basic, I mainly have
First off - apologies if this or a similar question has been asked before.
First off, if this is a duplicate, I apologize. I did quite a bit
First off I apologize if there is another post out there that answers this,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.