I’ve developed a jQuery plugin that will detect the specific css styles for setting the border radius of elements that the browser supports. The plugin will return an object containing three boolean properties: moz, webkit, and css3. Each property corresponds to a corresponding css style property
moz – MozBorderRadius
webkit – webkitBorderRadius
css3 – BorderRadius
var supported = $(“#foo”).borderRadiusSupport();
console.log(supported.moz); [...]

RSS