I'm building a simple CSS editor and I want to let the user to edit CSS properties of an element or to add a new one.
Before applying the new CSS property to the element, I want to check if the property is valid.
Do you know a simple way to check if a CSS property/value is valid with jQuery?
UPDATE:
Example:
$('#some-element').css('margin','10px'); //this is valid and it will be applied
$('#some-element').css('margin','asds'); //this is not valid and it will not be applied
How to check, before applying the property, that margin: asds;
is not valid?