I know this is old, but you can just set the value to an empty string to remove your custom style like so:
// set
$(this).css('background-color', '#000000');
// reset
$(this).css('background-color', '');
I know this is old, but you can just set the value to an empty string to remove your custom style like so:
// set
$(this).css('background-color', '#000000');
// reset
$(this).css('background-color', '');