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,12 @@
$(document).ready(function() {
//
// add your jQuery code here
$("#button1").mouseenter(function(){
$('#button1').removeClass("makeRed").addClass("makeBorder");
});
$("#button1").mouseleave(function(){
$("#button1").removeClass("makeBorder").addClass("makeRed");
});
});