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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T08:54:06+00:00 2026-06-07T08:54:06+00:00

This question is the root cause for my question. Hide all next tr td

  • 0

This question is the root cause for my question.

Hide all next tr td until next tr th

As already two answers being posted , I thought of trying something different

Javascript:

$(function(){ 
    var thList = $('td');
    $('td').click(function(){
        for( i =0; i < thList.length;i++){
            // What to do here
        }
    });
});

HTML:

    <table border="2">
        <tr>
            <td> 1 </td>
            <td> 2 </td>
            <td> 3 </td>
        </tr>
    <table>

What am doing here is
Assigning click event to <TH> element. And on load , am getting all the <TH> in the DOM in an Array.

Now, my logic is. Iterate the for loop and if the clicked TH is not the one in the for loop, then hide it.

What i tried is

if ( thList[i] != $(this)) { thList[i].style.display = 'none' }

But this does not seem to be working. what code I need to put there to compare the object

  • 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-07T08:54:07+00:00Added an answer on June 7, 2026 at 8:54 am

    Besides the fact, that you example markup does not contain any th-elements, you could try the following:

    $('td').click(function(){
    
        var $tdList = $('td').not(this); // <- get all th's and exlude the clicked element
    
        $tdList.each(function(){this.style.display = 'none'; });
    });
    

    or even better, use jQuery, you don’t need a each wrapper then:

    $tdList.hide();
    

    Since jQuery saves you a lot of work, try to use it whenever you can – use the each() instead of for-loops and use .css() (or even more dedicated methods like .hide()) instead of the native .style – this should shorten your code significantly.

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

Sidebar

Related Questions

This question is related to the one I asked here . I'm trying to
There are lots of questions that ask this or a similar question. They all
Right, I know you can google this question and get lots of answers on
This question is directly related to this SO question I posed about 15 minutes
This question is kind of a follow up to this question I asked a
This question is really basic. What is the performance difference between removing a UIView
This question is similar in concept to this one , except I see I
This question is about good programming practices and avoiding potential holes. I read Joshua
This question is related to another question I wrote: Trouble using DOTNET from PHP.
This question may seem blindingly obvious and I realise I am putting myself up

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.