<li><a href="home.html"> Home </a> </li>
<li> <a href="contact.html">Contact </a></li>
$('li').mouseenter( function() {
$(this).attr('a').css("color", "red");
});
fails. I am trying to understand how to reach that a within that 'li'. (not any 'li a')