Skip to content

Instantly share code, notes, and snippets.

@timsnadden
Created August 6, 2010 01:38
Show Gist options
  • Save timsnadden/510691 to your computer and use it in GitHub Desktop.
Save timsnadden/510691 to your computer and use it in GitHub Desktop.
$.extend($.support, {
borderRadius: function() {
var s = document.createElement("div").style;
return typeof s.MozBorderRadius == 'string' ||
typeof s.WebkitBorderRadius == 'string' ||
typeof s.KhtmlBorderRadius == 'string' ||
typeof s.borderRadius == 'string';
}()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment