jq remove css property 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
$('.tag-class').removeAttr('style');
Example 3: how to remove css from element using jquery
$("body").removeAttr("style");