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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:41:27+00:00 2026-05-13T12:41:27+00:00

I have a large set (around 100) of page elements that I would like

  • 0

I have a large set (around 100) of page elements that I would like to toggle (show/hide) with jQuery.
I just use $(".toggleElementClass").toggle(); This looks like the trivial solution.

The problem is this takes a few seconds, even on the latest Chrome browser. Is there a faster, more efficient way to achieve the same effect.

  • 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-13T12:41:27+00:00Added an answer on May 13, 2026 at 12:41 pm

    You can reduce the amount of work the browser has to do by leveraging stylesheets to key all the display changes off a single attribute change — typically, the classname of an ancestor element. This means you can cause them all to change at once rather than one-by-one, reducing the number of reflows and improving speed. For example:

    <style type="text/css">
        #mything p.toggled { display: none; }
        #mything.toggled p { display: none; }
        #mything.toggled p.toggled { display: block; }
    </style>
    
    <div id="mything">
        <p> foo </p>
        <p> bar </p>
        <p> bof </p>
        <p> zot </p>
    </div>
    
    <button id="toggle-all">all</button>
    
    <script type="text/javascript">
        $('#mything>p').click(function() {
            $(this).toggleClass('toggled');
        });
        $('#toggle-all').click(function() {
            $('#mything').toggleClass('toggled');
        });
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a large set of documents in a CouchDB database that were just
I have a page that uses jQuery tabs to tabify a set of HTML
I have a large set of data that is generated from a web service
I have a large set of real-world text that I need to pull words
I have fairly large set of data returned via AJAX from a page. This
Ok, here’s my problem. I have a rather large set of UIButtons that have
I have large set of flow charts and workflow diagrams. I want to draw
I have a large set of numbers, probably in the multiple gigabytes range. First
I have a large set of words (about 10,000) and I need to find
I have a large set of values V, some of which are likely to

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.