Attribute remove css code example
Example 1: how to remove css from element using jquery
$('.tag-class').removeAttr('style');
Example 2: how to remove css from element using jquery
$("body").removeAttr("style");
$('.tag-class').removeAttr('style');
$("body").removeAttr("style");