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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T00:37:12+00:00 2026-06-19T00:37:12+00:00

wanted a Jquery code to check whether the clicked column is first in the

  • 0

wanted a Jquery code to check whether the clicked column is first in the Row or not.

A table is being used for selecting certain options. And onclick, the background of the clicked td is shown (A tick Mark) by assigning a CSS class using jquery and removing that class from all the sibling td elements (one selection per row).

The issue is that it should not do this on clicking the first column as it contains the Labels for the option/question .

the current code is as follows:

  $(document).ready(function () {
    $("table tr td").click(function () {
        $(this).parent().find('td').each(function () {
            $(this).removeClass("CheckMark");
        });
        $(this).addClass("CheckMark");
    });
});

If the column is first, no action should be performed as it contains the Labels for option .

Hope to have explained the situation adequately :).

Kind regards,
A.Ali

  • 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-19T00:37:13+00:00Added an answer on June 19, 2026 at 12:37 am

    Use index() to find out first column on click of td. If index() gives zero then it will be first column as index() gives zero-based index.

    $(document).ready(function () {
        $("table tr td").click(function () {
    
            if($(this).index() == 0) return;    
    
            $(this).parent().find('td').each(function () {
                $(this).removeClass("CheckMark");
            });
            $(this).addClass("CheckMark");
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wanted to have the radio button check when its particular row is clicked,
I have the following jQuery code for finding the sum of all table rows,
I have a snippit of jquery code that works great(not my code). It works
I wanted to ask about the best way to write this JQUERY code. I
I wanted to check my JavaScript with JSLint. I am also using jQuery and
Im new to jquery and wanted to know how in my jquery code could
I wanted to create jquery plugin & started off creating a sample jquery plugin...But
I'm a jquery newbie - wanted to ask what might be the best strategy
I have a JSP which has jQuery and wanted to change the action message
I know jQuery does most when it comes to cross-browser issues. I just wanted

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.