remove style css using jquery 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');
$('#tag-id').removeAttr('style');
$('.tag-class').removeAttr('style');