I need to get all the td values into a string array. Following is my code
var tr = "#tblPurchaseOrders tr.PO1";
$(tr).each(function(index, tr) {
var lines = $(tr + " td").map(function(ind, td) {
var ret = {};
ret[ind] = $(td).text();
return ret;
}).get();
// I need to some more thing here
// I need to store all the td values in to lines variable.. This is not working for me.
// Am I missing some thing?
});
Thanks.
Try like this:
$('#tblPurchaseOrders tr.PO1').each(function(index, tr) {
var lines = $('td', tr).map(function(index, td) {
return $(td).text();
});
// Here lines will contain an array of all td values for the current row:
// like ['value 1', 'value 2', 'value 3']
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With