Я пытаюсь сделать подсветку кнопки при наведении на нее курсора
html:
<head>
<script src="jquery.js></script>
<scrips src="index.html"></script>
</head>
и js в index.js
$(".button").mouseenter(function(){
$(".button).css("background-color", "cyan");
$(".button).css("color", "white");
});