jquery clear css value code example
Example 1: js remove specific css property
// OPTION 1:
el.style.removeProperty('zoom');
// OPTION 2:
el.style.zoom = "";
Example 2: remove style jaury
$.css("background-color", "");
// OPTION 1:
el.style.removeProperty('zoom');
// OPTION 2:
el.style.zoom = "";
$.css("background-color", "");