I am trying to change the color of heading when a user scrolls over them. However, my code is not working. Yes I am newer to jQuery.
$("h1").mouseenter(function(){
("h1").css("color", "#00FF66");
})
$("h1").mouseleave(function(){
("h1").css("color", "#FF00FF");
})
I have tried everything in my knowledge. Any help?