How do I get smallest value of the textbox using jquery?
rows means trs which contain multiple tds & tds in turn contains textboxes I want to find the smallest value of each tr
$.each(rows, function () {
$(this).find("input[type='text']") //find smallest value of the textbox
});
how can I achieve this?
You’re almost there. Here’s what I did: