<html> <head> <title>example</title> </head> <body> <div style="width: 50px; height: 50px; background-color: red;"></div> <script> document.querySelector('div').onclick = function () { this.style.backgroundColor = ''; }; </script> </body> </html>