So entfernen Sie CSS aus dem Element mit JQuery
$('#tag-id').removeAttr('style');
Ankur
$('#tag-id').removeAttr('style');
$("#id").css({ 'background-color' : '', 'opacity' : '' });
$(".class").css({ 'background-color' : '', 'opacity' : '' });
//You can remove css by the above.
$("body").removeAttr("style");
$('.tag-class').removeAttr('style');