In my app users will be able to change element's border style attributes like radius, color, width, style etc.
Now I also need to be able to get these attributes with jQuery, however in order to get something like border-radius, you need to use css("border-top-left-radius")
(at least in new versions of firefox and chrome) and this will not work in all browsers, so my question is:
Is there a plugin that adds correct prefix to the css selector like webkit, moz etc. and maybe also makes these css features cross-browser compatible when setting these attributes?
Many thanks.