Added dirocty from javascript to jquery

This commit is contained in:
2025-11-20 16:20:58 +03:00
parent 31a20b5fe5
commit 9202203116
351 changed files with 7583 additions and 1346 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");
});
});