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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:15:49+00:00 2026-05-16T16:15:49+00:00

I am a lil new to JQ. I have a table and each row

  • 0

I am a lil new to JQ. I have a table and each row has a unique id like so <tr id="123">.

I have a edit button in one of the fields on that row, and I want to turn that row into a form.

How can I grab all the values of each field in that row?

Here is what the table looks like now.

<tr id="e2c420d928d4bf8ce0ff2ec19b371514">
   <td><div id="item_name">asdf (asdf)</div></td>

   <td><div id="edit">Edit</div></td>

   <td><div id="item_description">asdf</div></td>

   <td><div id="item_price">1234</div></td>

   <td><div id="item_qty">1</div></td>

   <td><div id="item_total">1234</div></td>
</tr>

<tr id="b2x4123928d4bf8ce0ff2ec19b372138">
   <td><div id="item_name">asdf (asdf)</div></td>

   <td><div id="edit">Edit</div></td>

   <td><div id="item_description">asdf</div></td>

   <td><div id="item_price">1234</div></td>

   <td><div id="item_qty">1</div></td>

   <td><div id="item_total">1234</div></td>
</tr>
  • 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-16T16:15:50+00:00Added an answer on May 16, 2026 at 4:15 pm

    I think you should be using classes and data-id attributes, but it is up to you.

    <table id="myTable">
        <tr data-id="e2c420d928d4bf8ce0ff2ec19b371514">
    
            <td><div class="item_name">asdf (asdf)</div></td>
    
            <td><div class="edit">Edit</div></td>
    
            <td><div class="item_description">asdf</div></td>
    
            <td><div class="item_price">1234</div></td>
    
            <td><div class="item_qty">1</div></td>
    
            <td><div class="item_total">1234</div></td>
        </tr>
    
        <tr data-id="b2x4123928d4bf8ce0ff2ec19b372138">
            <td><div class="item_name">asdf (asdf)</div></td>
    
            <td><div class="edit">Edit</div></td>
    
            <td><div class="item_description">asdf</div></td>
    
            <td><div class="item_price">1234</div></td>
    
            <td><div class="item_qty">1</div></td>
    
            <td><div class="item_total">1234</div></td>
        </tr>
    </table>
    

    What you need is (assuming you are using jquery 1.4.2+)

    $('#myTable').delegate('.edit', 'click', function () {
        var trElem = $(this).closest('tr');
        name = trElem.find('div.item_name').text();
        // etc...
    });
    

    Read up more on .delegate and .closest. They are less used but awesome methods.

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

Sidebar

Related Questions

i'm new to js. I have a lil problem,i have 2 functions , one
I have 3 columns in a mysql table like that COL1 COL10 COL11 longblob1
I have a lil problem with opening new tab in the browser after server
I have an array of strings that I would like to use the join
Ok so i have a lil function that will get a value from a
I am lil bit new to objective C. Here is my requirement. I have
I have a retain/release project that has a simple algorithm. I start out w/
i have 2 tframes, and an add button. I am trying to add one
I've this lil piece of code, I have done what I wanted, just one
<a href=#page class=lil-close>Close</a> I have this button to close a lightbox. The lightbox contains

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.