So, here is my first question from community.
Question: I am trying to show a div & increase width of hovered div with animation.
Problem: I achieved this by jquery & css but, the problem is on continuous hovering the animation don’t stop. So, i want to flush the previous animation from memory once the mouse is out of the div.
I searched and found something like stop() to be used but i am not getting the desired result.
Check what i have achieved yet
Thanks in advance!
So, Thanks to everyone for answering & special thanks to @Raminson.
I tried to read & understand
stop()& finally i figured out what i wantI used
stop(true, false)true will remove the queued animation.
false will not make animation jump to end
And it worked: Demo
Jquery code: