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?
You can create a new element and apply your CSS to it. You read the initial value, apply your css to this element and immediately read the value again. If the new value does not equal the initial value, your css is valid (because it has been successfully applied to the element).
var div = $("<div>");
var _old = div.css(property);
div.css(property,value);
var _new = div.css(property);
var valid = _old!=_new;
// if (_old != _new), the rule has been successfully applied
console[valid?"log":"warn"]( `${property}:${value} is ${valid?"":"not"} valid!` );
Example fiddle
The quickes solution I might think of, is to use CSS.supports function. Will work with vanilla js too. This is how it goes:
CSS.supports(propertyName, propertyValue)
CSS.supports('color','red')
//True.
CSS.supports('color', '#007')
//True.
CSS.supports('color', 'random')
//False.
CSS.supports('colours', 'red')
//False.
I don't think there's any need to generate a helper function, cos it's pretty straightforward.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With