js remove specific css property

JavaScript
$("#id").css({ 'background-color' : '', 'opacity' : '' });
$(".class").css({ 'background-color' : '', 'opacity' : '' });
//You can remove css by the above.// OPTION 1:

el.style.removeProperty('zoom');

// OPTION 2:

el.style.zoom = "";
Source

Also in JavaScript: