HI i have a table and i need to filter by last column with dropdown <select>. My filtering if country does not exist removing all rows <tr> But if country exist adding all rows but i need one row with this country not all.
$(document).ready(function () {
$('#select_country').on('change', function () {
var selected = $(this).val();
var tr = $('tr');
var td = $('td:last-child').text().trim();
if (td.indexOf(selected) > -1) {
$(tr).removeClass('cashback_filter_none');
} else {
$(tr).addClass('cashback_filter_none');
}
});
});
You're are comparing the value of the
#select_country
to the text of the lasttd
. That doesn't seem right. You should verify that is the case byconsole.log
the values for debugging.A good idea is to store the value of each country cell as an attribute upfront.
Example: