Thanks Guys !
I knew about Interface plugin, and more or less what it does.
What I didn't know was that the Core has some limitation.
Thanks again for the explanations.
Cheers,
Chris
Karl Swedberg-2 wrote:
>
> Hi there Chris,
>
> Only a subset of CSS properties are able to be animated with the
> jQuery core alone. For extended animation support, check out the
> Interface plugin. Here is a link to documentation on animate:
>
http://interface.eyecon.ro/docs/animate>
> And here is a snippet of code that gives you an idea of what you can
> do with it:
> $('#test').animate(
> {
> left: 100,
> style: 'padding: 20px 30px; margin: 10px;',
> className: 'greenBorders',
> opacity: 0.4,
> backgroundColor: 'olive'
> },
> 'slow'
> );
>
>
> --Karl
> _________________
> Karl Swedberg
> www.englishrules.com
> www.learningjquery.com
>
>
>
> On Feb 9, 2007, at 5:37 AM, Mahadewa