Template
1
0

added dom

This commit is contained in:
2025-11-20 17:25:11 +03:00
parent 50443223cd
commit 864bbef52d
353 changed files with 7926 additions and 2542 deletions

View File

@@ -0,0 +1,9 @@
//will wait until page ready
$(document).ready(function() {
/*when table header is clicked , removes selection class from all other table rows and
adds the selection class to this table headers row only*/
$("th").click(function(){
$("tr").children().removeClass("selection");
$(this).siblings().addClass("selection");
});
});