I want to change the color of a
when it is clicked by a mouse or while pressing the enter key.<
Try This
.clicked{ background:#fff !important; } $('.button').keydown(function(e){ if(e.which == 13){ $(this).addClass('clicked'); } e.preventDefault(); });