Jquery Hover Affecting All Divs

fmmeson

New Member
I have this jquery hover effect, how it works is there is one div that is invisible and when you hover over a div it slides the invisible div up, making it visible. When there are multiple divs and you hover over one div / box.. all the other invisible divs slide up, when just the div you hovered over should slide up. Here is my jquery for the slide up divs:\[code\]$(function(){ $(".video-entry-summary").hover(function() { $(".videotntitle").stop(true,true).animate({'bottom': '+=211px' },200); }, function() { $(".videotntitle").stop(true,true).animate({'bottom': '-=211px' },200); });});\[/code\]Here is the jsFiddle to demonstrate my problem.. and like I said, only one div should be sliding up, not all of them.http://jsfiddle.net/Rfs6G/1/Any help would be appreciated!! :)?
 
Back
Top