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,8 @@
//waits until page is ready
$(document).ready(function(){
//will display rgb value of selected panel in the reset panel
$(".theButton").click(function() {
var col = $(this).css('background-color');
$('.superButton').text( col);
});
});