javascript - how to highlight only one table td on click -
hello have table , want highlight table td when click it. managed make work on half. change's td when select on row, want select 1 td. here js code
<script> $(".table").on("click", "td", function() { $(this).closest("td").siblings().removeclass("td_select"); $(this).toggleclass("td_select"); $("#basicmodal").modal("show"); }); </script>
if got correctly, need this:
$(this).closest("table").find('td').removeclass("td_select"); //in current table, find cells, , remove highlight
Comments
Post a Comment