Is there a way to change smoothly .css() with jQuery? Like changing .css("top", myValue) from 0 to 200 smoothly by counting up each step (like 0, 1, 2, 3, ..., 198, 199, 200)? I do not want to use CSS transitions. Reason (long story short): Device which shall run the site does not support transitions smoothly with "top", transformY forces a bug of the browser that's not fixed yet.
Of course I could write a loop like counting "myValue" from 0 to 200 and updating it. But I'd love if there was a jQuery-implemented way.
$("myDiv").css( "top", myValue ); // make it smooth