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
If it can help, I add a problem with double quote :
$('#element').css("border-color", "");
does not work while
$('#element').css('border-color', '');
works