I've seen the following code:
$(this).css('border-color', '');
and wonder whether it is the same as:
$(this).css('border-color', 'none');
or whether in the first case the border-color CSS property is simply reset to its default value from the CSS stylesheet (and if not, then is there a way to reset the value to whatever is default in the stylesheet?). My concern is that I shouldn't have to change the jQuery JavaScript when I change the border-color in the stylesheet. Things should happen automatically.