how to get input text value from inside td jquery code example
Example: 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();
});
});