remove css property in jq code example
Example 1: js remove specific css property
// OPTION 1:
el.style.removeProperty('zoom');
// OPTION 2:
el.style.zoom = "";
Example 2: remove css jquery
$("#id").css({ 'background-color' : '', 'opacity' : '' });
$(".class").css({ 'background-color' : '', 'opacity' : '' });
//You can remove css by the above.