I'm new to Jquery and I'm trying to get started by simply changing the color of the font when I hover over it. I thought that I put the right code in but it's not working? can someone help me get this going?
SHOW.JS:
$(document).ready(function(){
$(".modal").hover(function(){
$(".modal").css("color","red");
}));
SHOW.HTML.ERB:
<p class="modal"><%= @subscriber.last_name %></p>
APPLICATION.JS:
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require_tree .
This is all my code. I just wanted to keep it simple at first.