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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T02:35:11+00:00 2026-06-09T02:35:11+00:00

I have a simple script. That show and hide a div. But i have

  • 0

I have a simple script. That show and hide a div. But i have a problem with “this”.

This is my script:

var accordion = $(".accordion"),
        content = $(".accordion .content"),
        button  = $(".accordion .btn-1");

    $(button, this).click(function(e){
        e.preventDefault();
        $(content, this).show();
    });

This is my html

<div class="accordion">
    <img src="http://placehold.it/200x130" width="200" height="130" alt="">

    <div class="content">
        <p>
            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod

        </p>
    </div>
    <a href="#" title="More" class="btn-1">More</a>
</div>

But i have a lot of that divs. Now, when i click on the btn-1. All of the accordions going open. How can i fix that? And how can i closed the content by clicking the btn-1.

Thank for helping!!

  • 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-09T02:35:13+00:00Added an answer on June 9, 2026 at 2:35 am

    You want to open the corresponding .content element when a “button” is clicked. This can be easily solved using DOM traversal [docs]:

    $(".accordion .btn-1").click(function(e) {
         e.preventDefault();
    
         // find the button's sibling with class 'content' and show it
         $(this).siblings('.content').show();
    
         // if you want to toggle the visibility, use .toggle instead
         $(this).siblings('.content').toggle();
    
         // if the structure is more complex, find the corresponding '.accordion'
         // element first and then search for the '.content' element
         $(this).closest('.accordion').find('.content').toggle();
    });
    

    I recommend to read the jQuery tutorials and the API documentation.

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

Sidebar

Related Questions

Made a simple script that hide/show a hidden div. The page automatically adjusts its
I have a simple jQuery script to show/hide list elements accordion-style along with a
I have this simple script that I'm working on. I must admit, I'm totally
I have a simple script that does some search and replace. This is basically
I have a simple jQuery script that I'm trying to build upon but I
I have a simple hide show jquery script I grabbed from an example site.
I have a simple script to hide/show a table row. I'd like it to
I have a simple jquery script that shows and hides div block: <script type=text/javascript>'
I have a simple script that pulls about 100 million results, 1 million at
I have a very simple script that creates a user: <?php include 'mysqlserver.php'; session_start();

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.