.box{ width: 100px; height: 100px; background: red; } .box:hover{ background: blue; } <div class="box"></div> document.getElementsByClassName('box')[0].onclick = function(){ this.style.backgroundColor = 'green'; }