jquery add and remove css code example
Example 1: jquery remove css style
//removing css with jQuery. i.e: set to default
$( "#myElementID" ).css("background-color", "");//just blank it out
Example 2: how to remove css from element using jquery
$('.tag-class').removeAttr('style');