forked from technolyceum/g11-m2
8 lines
263 B
JavaScript
Executable File
8 lines
263 B
JavaScript
Executable File
//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);
|
|
});
|
|
}); |