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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:28:18+00:00 2026-05-23T20:28:18+00:00

I have the following mark-up: <table> <thead> … </thead> <tbody> <tr> <td> <span class=’select_me’

  • 0

I have the following mark-up:

<table>
<thead>
...
</thead>
<tbody>
<tr>
    <td>
      <span class='select_me' id='42'></span>
    </td>
     <td>
      <span class='select_me' id='43'></span>
     </td>
  </tr>
 <tr>
    <td>
      <span class='select_me' id='50'></span>
    </td>
     <td>
      <span class='select_me' id='54'></span>
     </td>
  </tr>
</table>

How would I go about selecting the 2nd or 1st span ‘select_me’ in each row?
I figure it’s something like this – I want to get the id

$("td").each(function(){
v = $(this).children(".select_me:first").attr("id");
});

but it outputs ‘undefined’, any help would be appreciated

  • 1 1 Answer
  • 1 View
  • 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-23T20:28:20+00:00Added an answer on May 23, 2026 at 8:28 pm

    You can use the :eq selector:

    $("tr").each(function() {
        var firstId = $("span.select_me:eq(0)", this).attr("id");
        var secondId = $("span.select_me:eq(1)", this).attr("id");
    });
    

    Since you only have two <span> elements per row, you can also use the :first and :last selectors:

    $("tr").each(function() {
        var firstId = $("span.select_me:first", this).attr("id");
        var secondId = $("span.select_me:last", this).attr("id");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say I have the following table User_ID Manager_ID --------------------- Linda Jacob Mark Linda
Suppose I have the following html: var testString = ' <span id='id'> <div> <table>
I have the following table schema: create table SerialNo2( IncarnationID_UID counter primary key, Mark
Let's assume I have the following table class: class TestTable(tables.Table): id = tables.Column() description
I have the following mark up of a div that contains a form. The
I have the following mark up with a basic and advanced search divs. <div
So I have the following mark up : background: #7BC145 url(/images/ill_people_leadGen.png) no-repeat right top;
Say I have the following mark up: <label for=name>Name:</label> <input type=radio name=name id=name/> The
I have a table of data that looks like the following: ArtistName TrackName TrackID
I have the following table: what i want to do is group: group by

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.