Hi i have two links with animation:
var tl = new TimelineLite();
tl.to($(this).find('.top'), 0.1, {width:"100%"})
.to($(this).find('.right'), 0.1, {height:"100%"})
.to($(this).find('.bottom'), 0.1, {width:"100%"})
.to($(this).find('.left'), 0.1, {height:"100%"});
But when i am hovering fast between this two items animation is not finished like stop(true,false). How can i implement that in Greensock ?