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

  • Home
  • SEARCH
  • 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 1063739
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:49:41+00:00 2026-05-16T18:49:41+00:00

I have about 25 show/hide (toggle) elements on a page like so… HTML: <h2><a

  • 0

I have about 25 show/hide (toggle) elements on a page like so…

HTML:

<h2><a href="#" class="link1">Headline One</a></h2>
<div class="toggle-item-link1">content</div>

<h2><a href="#" class="link2">Headline Two</a></h2>
<div class="toggle-item-link2">content</div>

JS:

$('[class^=toggle-item]').hide();
//toggle content on click
$('[class^=link]').click(function() {
var $this = $(this);
var x = $this.attr("className");
$('.toggle-item-' + x).toggle();
$(this).text($(this).text() == 'open' ? 'close' : 'open');

So what is happening is that the H2 text (Headline One, Headline Two) is being completely replaced with the text “open/close” depending on the toggle state. What I want to do is add Open/Close text to the actual headline depending on the toggle state.

For example:

Open Headline One / Close Headline One

Open Headline Two / Close Headline Two

I’m just not seeing how to do that here. Any help would be great. Thanks!

  • 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-16T18:49:42+00:00Added an answer on May 16, 2026 at 6:49 pm

    Just to keep things simple, I’d put the Open/Close text in a span, and reference that:

    Example: http://jsfiddle.net/8TXDM/1/

    HTML

    <h2><a href="#" class="link1"><span>Open</span> Headline One</a></h2>
    <div class="toggle-item-link1">content</div>
    
    <h2><a href="#" class="link2"><span>Open</span> Headline Two</a></h2>
    <div class="toggle-item-link2">content</div>​
    

    jQuery

    $('[class^=toggle-item]').hide();
    
    $('[class^=link]').click(function() {
        $('.toggle-item-' + this.className).toggle();
        $('span',this).text(function(i,txt) {
            return txt === "Open" ? "Close" : "Open";
        });
    });​
    

    Also, instead of selecting the .toggle-item- element from the DOM each time, I’d probably just traverse there.

    Example: http://jsfiddle.net/8TXDM/2/

    $('[class^=link]').click(function() {
        $('span', this).text(function(i, txt) {
            return txt === "Open" ? "Close" : "Open";
        }).end().parent().next().toggle();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a simple HTML page that contains two tabs that show/hide content in
Okay, here's my problem. I have a page where I use toggle to show/hide
I have a question about usability/design. I currently am using some JQuery to hide/show
I'm desperate and frustrated about this : how can I show hide one or
i have a problem about select option. i want to show n hide my
I have a javascript function that will show the image you're about to upload
I want to have the following method not show a warning about using raw
I have a Fusion Table of about 1000 entries, and I show them on
I am sorry about the amount of code here. I have tried to show
I have about 8 entities that all have a one to one relationship with

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.