If I set a CSS value on a specific element using:
$('#element').css('background-color', '#ccc');
I want to be able to unset that element-specific value and use the cascaded value, along the lines of:
$('#element').css('background-color', null);
But that syntax doesn't seem to work -- is this possible using another syntax?
Thanks in advance!
Edit: The value isn't inherited from the parent element -- the original values comes from an element-level selector. Sorry for any confusion!