Is there a jQuery CSS3 plugin available that can handle cross-browser gradients? I've noticed that most gradient plugins out there involve creating multiple elements.
Thank you.
Edit: I apologize for any confusion - I'm not attempting to force CSS3 on browsers that don't support it. I am aware that I can use gradients on browsers that do support CSS3 gradients and use IE filters as a fallback. I'm looking to see if there is already a jQuery plugin available that can handle this in the code.
For example, jQuery core standardizes elem.css('opacity', '.5')
so that it functions consistently across browsers regardless of syntax differences. I'm searching for something similar for gradients.
However, if such a plugin doesn't exist, I'll create it myself.