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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T01:21:05+00:00 2026-05-15T01:21:05+00:00

I am trying to alter the button text for a expand/collapse button. Basically, a

  • 0

I am trying to alter the button text for a expand/collapse button. Basically, a user clicks “Collapse” and I perform a slideToggle and when the slideToggle is done, I change the button text to “Expand” and vice-versa.

The following code works great however if you click the expand/collapse button rapidly, it looses its mind and shows “Expand” when it’s already expanded or “Collapse” when it’s already collapsed.

Any tips are appreciated.

Thanks!

function toggleBox( button, box ){
if($(box).is(“:hidden”)) {
$(box).slideToggle(“slow”, function(){
$(button).html(“Collapse”);
});
}
else {
$(box).slideToggle(“slow”, function(){
$(button).html(“Expand”);
});
}
}

  • 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-15T01:21:06+00:00Added an answer on May 15, 2026 at 1:21 am

    In your case, it’d be safer to do the check as you’re setting the text, after the animation finishes, like this:

    function toggleBox( button, box ){ 
      $(box).slideToggle("slow", function(){ 
        $(button).html($(this).is(":hidden") ? "Expand" : "Collapse"); 
      }); 
    }
    

    Currently you’re checking when it starts, but remember it’s not :hidden until it finishes hiding, so until the moment the slideUp completes, it’s still :visible 🙂

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

Sidebar

Related Questions

I am trying to change the button size dynamically, but after using setWidth() and
I am trying to display a new panel after the user clicks an add
I have a jquery modal dialog, and I am trying to change the text
I am trying to display real-time text in Tkinter after a Button command calls
In objective C, I'm trying to resize an application window after a button is
I am trying to save a photo with a button to camera roll after
I'm trying to ALTER a table by adding a new CLOB column (on Oracle
I am trying to alter column datatype of a primary key to tinyint from
I am trying to alter svg image colors with javascript. Is this possible? Can
I am trying to alter the date_widget using symfony2 and twig. By default a

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.