I have a problem animating border-top-left-radius style. I use this style by entering two length values separately.
border-top-left-radius: 15px 25px;
I would like to increase these two length values separately via jquery.animate().
Is there a way to achieve this?
border-top-left-radius accepts just one value right? So you would animate it like:
EDIT
Not sure if jQuery supporst this out of the box. Maybe you can implement the step callback like this:
http://jsfiddle.net/YWsQn/1/