i just want make so it the tr hide when the td does not follow the requirments, tried with jquery and javascript, don't know what's wrong
$(document).ready(function(){
$("td").each(function() {
var id = $(this).attr("price_search");
if (id > value4 && id < value5) {
$(this).hide;
}
else {
$(this).hide;
}
});
});
}