We have two ways, either you can directly remove the applied CSS style class which is applied to DOM element or remove the applied CSS style from element
//Remove the class associated with element
$('#ID').removeClass("cssClass");
//Remove the CSS style from DOM element
$('p').css({"color":""});