Is it possible to get some param target value (for example height) of css3 transition element before animation ends.
For example we have div
with css
div {height: 300px;}
This div has height transition css
Then we create class
div.big {height: 450px;}
And then we run jQuery code:
var height = $('div').addClass('big').height();
How to make height
variable to be 450, not 300 or 301px as it just beginned changing its height?
I would avoid removing its transition css as it would cause flickr.