Select An Attribute Value In A Specific Row Specific Column And Specific Input October 21, 2024 Post a Comment Given a table with a plenty of row like this: Solution 1: $("#table_id tr").eq(1).find("td").eq(3).find("input").val() gives you the value of the input in row 1 column 3 of your table ( or whatever row and column number you enter ).Solution 2: var tr = $('#table_id tr:eq(1)'); tr.find("input[name=s_attr]").val(); tr.find.. etc... CopySolution 3: Use the attribute selector and the .val() function$('[name=s_attr]').val() $('[name=p2]').val() $('[name=id]').val() Copy Share Post a Comment for "Select An Attribute Value In A Specific Row Specific Column And Specific Input"