Simple Jquery Hover Issue

Closseduasuap

New Member
I have some very simple jquery as listed below:\[code\]$(".block").hover(function(){ $(".drag").stop().fadeIn(1000); }, function(){ $(".drag").stop().fadeOut(1000);});\[/code\]I have a series of divs, each having a class of \[code\]block\[/code\]. When I hover over \[code\].block\[/code\], \[code\].drag\[/code\] fades in ALL of the divs with a class of block. I just want the \[code\].drag\[/code\] to be faded in on the element that the mouse is hovering over, not all of them. Thanks!
 
Top