I have an element, which I move across the screen using an animation:
slide.animate({'left': value*100 + '%'}, transitiontime * 1000)
When a specific event occurs, I stop the animation using
slide.stop();
now I want to get the current 'left' value using
slide.css('left');
but unfortunately I get a 'px' value instead of percent, which I used in the animation. Is there a way to get the percent value?