I have a div that is 50X100 pxs and I want to extend the height to 125 pxs when my mouse enters it. The div's class name is Home. Here's what I have so far:
$(document).ready(function(){
$('.Home').mouseenter(function(){
$('.Home').animate({height: "125px"})
})
});
It doesn't seem to be doing anything. Am I completely wrong or just missing one element or something?
"125px"
could simly be replaced with125
. And the second$('.Home')
could indeed also be$(this)
. Did you include a link to the library? – Shikkediel 17 mins ago