Так что мне нужно иметь возможность парить над лицом в # 3, и оно меняется на липкое лицо и обратно, но это просто не будет работать
<section id="three">
<p class="desc">3. Create a hover event that will change the image from happy to gooey (and back again) then create a double click event that will change the image to angry.</p>
<img src="images/happyface.png" alt="face">
`$("three img").hover(function(){
$(this).attr({src:"images/gooeyface.png"})
}),
function(){
$(this).attr({src:"images/happyface.png"});
};`