delete style with jquery code example
Example: js remove specific css property
// OPTION 1:
el.style.removeProperty('zoom');
// OPTION 2:
el.style.zoom = "";
// OPTION 1:
el.style.removeProperty('zoom');
// OPTION 2:
el.style.zoom = "";