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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T23:14:04+00:00 2026-06-15T23:14:04+00:00

I have a a drop down menu that uses toggle and is triggered when

  • 0

I have a a drop down menu that uses toggle and is triggered when a + character is clicked (element with the .plusminus class). When the toggle is fired the + sign is also toggled to `display: none’ whilst a – (minus) sign is toggled to display instead.

The trouble is clicking the minus sign will not trigger the drop down menu to toggle again – it only works when the + sign is showing.

Would anyone know what I have done wrong?

Thanks

$('#menu li:has(ul)').each(function() {   
    $(this).append( "<span class='submenuplus plusminus'> &#43; </span>" );
    $(this).append( "<span class='submenuminus plusminus'> &#45; </span>" );   
});

$('#menu').on('click','.plusminus',function() {
    $(this).prev("ul").slideToggle("slow"),
    $('.submenuminus, .submenuplus').toggle();
});
  • 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-06-15T23:14:05+00:00Added an answer on June 15, 2026 at 11:14 pm

    I cleaned up the click event for you. Try something like the following

    $('#menu li:has(ul)').each(function() {   
        $(this).append( "<span class='submenuplus plusminus'> &#43; </span>" );
        $(this).append("<span class='submenuminus plusminus'> &#45; </span>");
        $(this).find('.submenuminus').hide();    
    });
    
    $('#menu .plusminus').click(function(){
        $(this).prevAll("ul").slideToggle("slow"),
        $(this).parent().find('.plusminus').toggle();
    });​
    

    One issue that is tripping you up is the use of

    $(this).prev("ul")
    

    This returns the nested <ul> for the + sign, but not for the - sign, because .prev([selector]) only finds the immediate sibling matching the selector. The <ul> is not an immediate sibling of the - sign’s <span> (The <span> with the + sign is in between the two), so you must instead use .prevAll([selector]).

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

Sidebar

Related Questions

I have built a drop-down menu here http://dev.driz.co.uk/jsonmenu/ that uses JSON to dynamically build
I have this drop down menu that when one menu is clicked if there
I have a standard drop-down menu that uses jQuery to hide the children li
Currently have a drop down menu that is activated on a hover (from display:none
I have a drop down menu that looks great when the page it scrolled
So, I have an animated drop down menu that slides down when your mouse
I have a drop down menu, that a user selects a criteria from, based
I have a drop down menu that looks like this: It works fine, but
I need to make tabs that also have drop down menu and requirements are
I have a drop down menu which uses the slideUp feature in jQuery. I

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.