http://jsfiddle.net/aprWP/

<a href="#numtag-1">One</a>
<a href="#numtag-2">Two</a>
<a href="#numtag-3">Three</a>

<div class="numtag-1">One</div>
<div class="numtag-2">Two</div>
<div class="numtag-3">Three</div>

.. on hover the appropriate div should toggle class 'active'.

Tried a lot of things but can't get it to work.

Thanks

link|improve this question

It's not clear what you want to hover over. – Blazemonger Sep 13 '11 at 15:02
What exactly did you try btw? – Richard Dalton Sep 13 '11 at 15:04
feedback

5 Answers

up vote 2 down vote accepted

Using a combination of hover event and toggleClass:

$('a').hover(function() {
    $('div.' + $(this).attr('href').substring(1)).toggleClass('active');
});

http://jsfiddle.net/aprWP/7/

Changed to use substring as I think that's a better way of doing it.

link|improve this answer
I like short code. Short is good. (I would have used .slice(1) instead of .replace('#',''), though.) – Blazemonger Sep 13 '11 at 15:05
feedback

This is nice and easy. Use the .hover() event on the a, create the class from the href attribute of the a, and here you have it:

$(document).ready(function() {
    $("a").hover(function() {
        var str = $(this).attr("href").replace("#", "");

        $("div." + str).addClass("active");
    }, function() {
        var str = $(this).attr("href").replace("#", "");

        $("div." + str).removeClass("active");
    });
});

Do bear in mind that you need to remove the # from the href attribute, hence the .replace("#", "") part.

link|improve this answer
No need to have two functions. Just use one and toggleClass. But +1 anyway as it works. – Richard Dalton Sep 13 '11 at 15:03
If you want to remove the class when the mouse leaves, you need two functions. If, as you said, you just want to toggle a class when the mouse enters the a, one is fine. – JamWaffles Sep 13 '11 at 15:44
feedback
$(document).ready(function() {      
    $('a').hover(function() {
        var selector = 'div.' + $(this).attr('href').substr(1);
        $(selector).addClass('active');
    }, function() {
        var selector = 'div.' + $(this).attr('href').substr(1);
        $(selector).removeClass('active');
    });
});

http://jsfiddle.net/aprWP/3/

link|improve this answer
feedback

Try the following

$(document).ready(function() {
    $('a').hover(function() {
       var id = $(this).attr('href').substring(1);
       $('.' + id).addClass('active'); 
    }, function() {
       var id = $(this).attr('href').substring(1);
       $('.' + id).removeClass('active');        
    });
});

JSFiddle - http://jsfiddle.net/aprWP/4/

link|improve this answer
feedback

Try this code:

$(document).ready(function() { 
    $('a').hover(function(){    
      var url = $(this).attr('href'); 
      var className = url.substring(1); 
      $('div.' + className).toggleClass('active'); 
    }); 
}); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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