jquery removeStyle code example
Example 1: js remove specific css property
// OPTION 1:
el.style.removeProperty('zoom');
// OPTION 2:
el.style.zoom = "";
Example 2: remove an attribute from style tag using jquery
$("abc").css({"<PROPERTY>": ""});
Example 3: remove style jaury
$.css("background-color", "");