Files
prim-dns-server/file server/example/javascript/index.js

6 lines
255 B
JavaScript
Raw Normal View History

window.addEventListener('load', function() {
document.querySelectorAll('.color-button').forEach(btn => btn.addEventListener('click', function() {
document.getElementById('color-text').style.color = btn.getAttribute('data-color');
}));
});