Skip to content

Instantly share code, notes, and snippets.

@cgcardona
Created November 7, 2010 20:26
Show Gist options
  • Save cgcardona/666399 to your computer and use it in GitHub Desktop.
Save cgcardona/666399 to your computer and use it in GitHub Desktop.
// this code works for getting the webkit border radius value
var borderRadiusValue = $("#dynamic").css("border-top-left-radius");
console.log(borderRadiusValue);
// this code doesn't work for getting the -moz-border-radius value
var borderRadiusValue = $("#dynamic").css("-moz-border-radius");
console.log(borderRadiusValue);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment