mirror of
https://github.com/bvanroll/rpiRadio.git
synced 2025-08-29 12:02:42 +00:00
6 lines
140 B
JavaScript
6 lines
140 B
JavaScript
|
|
const button = document.getElementById('mainbtn');
|
|
button.addEventListener('click', function(e) {
|
|
console.log('button was clicked');
|
|
});
|