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 7399985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:08:03+00:00 2026-05-29T04:08:03+00:00

The designer I am working with has given me a bit of functionality to

  • 0

The designer I am working with has given me a bit of functionality to work on and I’m not sure how to approach it. She basically wants the following;

  • When you hover over a link, a panel should drop down (done this bit no problem)
  • The panel should dissapear after 10 seconds (also done no problem)
  • If your cursor is within the panel, the panel should never dissapear. Once your cursor leaves the panel, the 10 second timer should start again (erm..)

Could anyone point me in the right direction of a plugin or article that explains how to achieve this third bit of functioality? I’m a fairly seasoned developer but am struggling with how to approach this or even where to start googling. Here’s what I have so far, all working but for that third bullet point. I have a feeling I may need to completely change my approach to get this to work;

function showMiniBasket() {
    $("#basketMiniSummary").slideDown();
}
function hideMiniBasket() {
    $("#basketMiniSummary").fadeOut();
}

var config = {
    over: showMiniBasket, 
    timeout: 10000, 
    out: hideMiniBasket 
};

$("#basketDropDown").hoverIntent(config);

THE ANSWER…

Based on a suggestion below, the eventual solution was…

function showMiniBasket() {
    $("#basketMiniSummary").slideDown("fast");
}

function hideMiniBasket() {
    if (!$('#basketMiniSummary').hasClass('being_hovered')) {
        $("#basketMiniSummary").fadeOut();
    }
}

var config = {
    over: showMiniBasket,
    timeout: 1000,
    out: hideMiniBasket
};

$("#basketDropDown").hoverIntent(config);

$('#basketMiniSummary').hover(function() {
    //hover in
    $(this).addClass('being_hovered');
    $("#basketMiniSummary").slideDown();
}, function() {
    //hover out
    $(this).removeClass('being_hovered');
    $("#basketMiniSummary").delay(1000).fadeOut();        
});
  • 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-29T04:08:03+00:00Added an answer on May 29, 2026 at 4:08 am

    I would use $.hover like so:

        $('#the_panel').hover(function () {
            //hover in
            $(this).addClass('being_hovered');
            $("#basketMiniSummary").slideDown();
        }, function () {
            //hover out
            $(this).removeClass('being_hovered');
            setInterval('hideMiniBasket()', 10000);
        });
    
        //Also hideMiniBasket should be modified
        function hideMiniBasket () {
            if (!$('#the_panel').hasClass('being_hovered')) {
                $("#basketMiniSummary").fadeOut();
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Has anyone got the new jBPM 4.3 web designer installed and working? I am
I'm working on a drupal 6 site at mydomain.com/drupalsite, and the designer has put
I'm not sure if this question has been answered in full or if my
I'm working on an older .NET code base that has all the designer code
A designer has given me a Silverlight child window that was designed in Expression
I noticed when working with SharePoint Designer that each workflow has a config xml
I'm working on a site for a designer who has set up Joomla 1.5
Here's my predicament. I'm working with a designer who has a very unique layout
I'm using GWT-Designer on a GWT project. It has been working well however some
First of all, I'm not a web designer, I'm a programmer, so I'm working

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.