jquery remove css add css code example
Example 1: how to remove css from element using jquery
$('#tag-id').removeAttr('style');
Example 2: js remove specific css property
// OPTION 1:
el.style.removeProperty('zoom');
// OPTION 2:
el.style.zoom = "";
Example 3: how to remove css from element using jquery
$('.tag-class').removeAttr('style');