If I set a CSS value on a specific element using:
$(\'#element\').css(\'background-color\', \'#ccc\');
I want to be able to unset that elem
Try this:
$('#element').css('background-color', 'inherit');