I'm changing CSS with jQuery and need to remove the style I've added:
if(cor != 'ffffff') $("body").css("background-color", cor); else // remover style ?
The above line runs whenever a color is selected using a color picker when the mouse moves over a color wheel.
I can not do this with css, with "background-color", "none" because it will remove the default style from css files. I just want to remove the inline style of background color added by jQuery.