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> 

jsfiddle

if got correctly, need this:

 $(this).closest("table").find('td').removeclass("td_select");   //in current table, find cells, , remove highlight 

demo: https://jsfiddle.net/d3umm7w8/2/


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -