Does anyone know of a jquery css3 plugin that supports cross browser gradients. All the gradient plugins I've seen thus far are based on creating many elements.
Thanks.
Edit: Sorry for being unclear, I'm not trying to make CSS3 work on browsers that don't support it. I know I can use gradients on the browsers that support CSS3 gradients, and using IE filters. I'm trying to see if anyone has already written a jQuery plugin so that I can do it in the code.
for instance jquery core standardizes elem.css('opacity', '.5')
so that it works cross browsers regardless of the different syntaxes. Looking for something like this for gradients too.
But if it doesn't exist I guess I'll just write it myself.