clubinfo-2024-2025/fonts/assets/js/main.js
2024-11-08 15:41:24 +01:00

9 lines
270 B
JavaScript

var input_fontweight = document.querySelector('[name=fontweight]');
console.log(input_fontweight);
var h2 = document.querySelector('h2');
input_fontweight.addEventListener('input', function(e){
console.log(e.target.value);
h2.style.fontWeight = e.target.value;
});