How can i execute the action only on the div,when i have multiple div with same class
http://jsfiddle.net/kent93/Qw7bw/
when the mouse enter one div , the other div also will have action , how can i solve this
i want only the div that my mouse goes in take action , not the other, what best solution?
Change the selector of each position to:
$(this).children(".class")for example the code
$(".fromTopToBottom")will change to$(this).children(".fromTopToBottom")Demo: http://jsfiddle.net/Qw7bw/10/