Answers for "jquery look for td with text"

1

how to get text which is in input td using jquery

$(function(){
    $("#onpressofabutton").click(function(){
        var data1 = $(this).find("td:eq(0) input[type='text']").val();
        var data2 = $(this).find("td:eq(1) input[type='text']").val();
    });
});
Posted by: Guest on May-25-2020
1

jquery get td value

$(".item-model-number .value").each(function() {
  var value = $(this).text();
  console.log(value);
})

/* <table>
    <tr class="item-model-number">
      <td class="label">Item model number</td>
      <td class="value">GL552VW-CN426T</td>
    </tr>
  </table> */
Posted by: Guest on March-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language