Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a menu. The menu tabs are images. I'd like that the image is changing after:

  • the click is executed
  • the click is done
  • click on another tab

So I need three different images. The changing if the click is executed works. My idea was to work with .addClass() and .removeClass().

Here is the HTML:

<div class="navigation">

    <ul>
        <li id="1">
            <div id="menuImage1" class="menuImage"></div>
            <div class="menuText"><p>1</p></div>
        </li>
        <li id="2">
            <div id="menuImage2" class="menuImage"></div>
            <div class="menuText"><p>2</p></div>
        </li>
        <li id="3">
            <div id="menuImage3" class="menuImage"></div>
            <div class="menuText"><p>3</p></div>
        </li>
        <li id="4">
            <div id="menuImage4" class="menuImage"></div>
            <div class="menuText"><p>4</p></div>
        </li>
        <li id="5">
            <div id="menuImage5" class="menuImage"></div>
            <div class="menuText"><p>5</p></div>
        </li>
        <li id="6">
            <div id="menuImage6" class="menuImage"></div>
            <div class="menuText"><p>6</p></div>
        </li>
    </ul>

</div>

JQuery(example for the first menu tab):

$("#1").mousedown(function() {
    $(".menuImage1").addClass("menuImageClick1"); // new class on mouse button press
});


$("#1").mouseup(function() {
    $(".menuImage1").removeClass("menuImageClick1");  //remove class after mouse button release
});


$("#1").click(function() {
    $(".menuImage1").addClass('menuImageActive1');
    $(".menuImage1").not(this).removeClass('menuImageActive1');

});

Please can you Help me because my JavaScript isn't that good.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.