jquery remove css style

CSS
//removing css with jQuery. i.e: set to default 
$( "#myElementID" ).css("background-color", "");//just blank it out$("#id").css({ 'background-color' : '', 'opacity' : '' });
$(".class").css({ 'background-color' : '', 'opacity' : '' });
//You can remove css by the above.
Source

Also in CSS: