Hi just wondering how to change the color of a button onhover? Please take a look at my jquery- if you could fill me in on how to to do this in original JS as well?
HTML
<button class=J>taco truck</button>
CS
.J{
background-color: red;
width: 1000px;
height: 200px;
}
JS
$(".J").onmouseover(function taco(){
$(".J").style.backgroundColor = "blue";
})