What I'm trying to do is to fade in a div by rolling over a link. Once your mouse is over the link, you're able to mouse around the div that just faded in and you can click links inside the div.

Currently I have four links and each have a div with links and images in. On hover of the link the div fades in below the link then you can move your mouse over the div and use the images + links within. On roll out of the link or the div, it should fade out. Also, if you move your mouse to another main navigation link it should fade out the previous and fade in the new div.

The problem seems to be that the previous DIV will sometimes not fade out if you rapidly move to next link. I'm drawing a blank, any ideas?

Problem solved, answer is here: http://jsfiddle.net/UkneJ/3/

This is what I'm working with: http://jsfiddle.net/DemhU/17/

$('#div1, #div2, #div3, #div4').hide();

var is_over;

var hide_dropnav = function(a) {
    setTimeout(function() {
        if (is_over) {
            return;
        } else {
            var a_name = $(a).attr('data-name');

            $('#' + a_name).fadeTo(250, 0);

            $('#nav li a').removeClass('active');
        }
    }, 10);
}

$('#nav li a').hover(function() {

    var elem_name = $(this).attr('data-name');

    $('#' + elem_name).stop(true,true).fadeTo(150, 1);

    is_over = true;

    $('#nav li a').removeClass('active');
    $(this).addClass('active');

    var that = this;
    hide_dropnav(that);

}, function(){
    is_over = false;
    hide_dropnav(this);
});

$('#div1, #div2, #div3, #div4').hover(function() {
    is_over = true;
}, function() {
    is_over = false;
});
link|improve this question

76% accept rate
Can you post your code in a jsfiddle? this looks pretty straight forward to me but I'm not at home and time is limited. Any reason you arn't using a class for this instead of #div1..2..3 etc? – KryptoniteDove Oct 8 '11 at 18:58
Each of the Div's contains specific content. I'm open to simplifying :) Here is the JSFiddle link: jsfiddle.net/DemhU/17 – stwhite Oct 8 '11 at 19:19
You have two answers now, do you still need assistance or are they good for what you need? – KryptoniteDove Oct 8 '11 at 19:25
feedback

2 Answers

up vote 1 down vote accepted

There are a lot of ways to do this, but I threw together a quick working example of the method I've used before:

http://jsfiddle.net/UkneJ/

In this example, I'm binding hover to both the A and the DIV, and using a slight delay to check is "is either element hovered?" state.

You can also just bind hover to the wrapping LI, which makes things much simple. This only works if both your link and your div are contained in each LI, though:

http://jsfiddle.net/UkneJ/1/

link|improve this answer
Yeah unfortunately they aren't in the same Li... Here is the link to my code on JSFiddle jsfiddle.net/DemhU/17 – stwhite Oct 8 '11 at 19:21
Thanks for the markup. Tweaked my answer to work with your code here: jsfiddle.net/UkneJ/3 – Doug Avery Oct 8 '11 at 19:31
feedback

possible without javascript: http://jsfiddle.net/XENww/

link|improve this answer
It has to be javascript/jquery. – stwhite Oct 8 '11 at 19:16
I updated my code here jsfiddle.net/DemhU/17 – stwhite Oct 8 '11 at 19:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.