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

  • SEARCH
  • Home
  • 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 3398498
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:39:23+00:00 2026-05-18T04:39:23+00:00

I recheck my code many times and I use something similar on another website

  • 0

I recheck my code many times and I use something similar on another website where it is working.
Here is the link to the site:
http://bit.ly/34XhDb

    //add hover intent to dropdown
jQuery(document).ready(function(){
var config = {
sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)
interval: 100, // number = milliseconds for onMouseOver polling interval
over: doOpen, // function = onMouseOver callback (REQUIRED)
timeout: 1200, // number = milliseconds delay before onMouseOut
out: doClose // function = onMouseOut callback (REQUIRED)
};

function doOpen() {
    jQuery(this).addClass("hover");
    jQuery('ul:first',this).fadeIn();
}
function doClose() {
    jQuery(this).removeClass("hover");
    jQuery('ul:first',this).fadeOut();
}
jQuery("ul#main_catnav li").hoverIntent(config);

});

I checked with debug but does not appear to be a conflict, plus the class of hover is being applied.

Thank you!

  • 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-18T04:39:24+00:00Added an answer on May 18, 2026 at 4:39 am

    The problem isn’t the plugin, it’s your CSS, you have this:

    ul#main_catnav ul { /*...other styles... */ display: none; }
    ul#main_catnav li:hover ul { display: block}
    

    So when the mouse leaves that :hover isn’t being applied anymore and it’s hidden instantly by CSS, not JavaScript. To get it working you need to add li.hover as well, like this:

    ul#main_catnav ul { /*...other styles... */ display: none; }
    ul#main_catnav li:hover ul, ul#main_catnav li.hover ul { display: block}
    

    Which accounts for the element either being hovered by the mouse, or having the class .hover like you’re giving it with the hoverIntent plugin.

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

Sidebar

Related Questions

When i launch the php script, sometime works fine, but many other times it
firstly, here's my code SELECT dbo.tblPat.pID, dbo.tblRec.rID, right(rPCheck, LEN(rPCheck) - (CHARINDEX('|', rPCheck))) as pCheck,
I have been working on something that checks an MySQL Database to check something
Ok, here is my code. What it is supposed to do is retrieve the
Where should intermediate code be placed? (something that ins't just storing/retrieving data from DB
I have to copy the text from one text box to another using checkbox
I've written some code to generate an array of structures. The id variable is
I'm working on parse generator for PHP . Currently I'm trying to implement canonical
I'm trying to use SQLite3 in PHP, and everithing was fine until I needed
Before my java application go live, I decided to do/re check followings 1) Code

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.