html,,,,,,Change Color on Click,, #myElement {, width: 100px;, height: 100px;, background-color: red;, },,,,,, document.getElementById('myElement').addEventListener('click', function() {, this.style.backgroundColor = 'blue';, });,,,,
``