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