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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T22:51:28+00:00 2026-05-22T22:51:28+00:00

Forgive me if this is a newbie question: I’ve got a menu set to

  • 0

Forgive me if this is a newbie question:

I’ve got a menu set to open the next div to see more details, and if there is another div open already it will close it while it opens the new one. I cannot figure out how to close the div already open if you click on the header associated with that div. It just closes & reopens.

Code:

$(document).ready(function() {

    $(".heading").click(function(){
        if($(".content").is(":visible")){
            $(".less").removeClass("less");
            $(".content").slideUp(500);
        }
        $(this).next(".content").slideToggle(500);
        $(this).children(".more").toggleClass("less");
    });

});

Any help is appreciated.

  • 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-22T22:51:29+00:00Added an answer on May 22, 2026 at 10:51 pm

    Try this:

    $(".heading").click(function(){
        // Cache stuff, so we don't have to keep generating jQuery objects
        var $this = $(this);
        var $thisContent = $this.next(".content");
    
        // Saves a boolean value to see if the clicked element's content is
        // currently visible
        var thisWasVisible = $thisContent.is(":visible");
    
        // Removes less class and slides up ALL visible content divs
        $(".less").removeClass("less");
        $(".content").slideUp(500);
    
        // Slide the clicked element's content div down and add less class,
        // but only if it's content was not originally visible. We don't want
        // to show it again if it was just hidden.
        if(!thisWasVisible){
            $thisContent.slideDown(500);
            $this.children(".more").addClass("less");
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Forgive a newbie, I don't even know how to ask this question properly: I
I am an android newbie so forgive me if this question is simple. Basically
Forgive me if this is a newbie question, but... When playing video, is it
I am a learning via a book so please forgive this newbie question. I
Forgive me if this is a newbie question - but sadly that's what I
I'm a javascript newbie so please forgive me if this question is really basic.
I am a Rails newbie (from PHP). So forgive this basic data structures question:
I'm a bit of a DI newbie, so forgive me if this is the
Forgive if this question is silly. I just started reading the SugarCRM developer documentation
Forgive me if this is a repeat question. I've searched StackOverflow and did not

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.