Q:

js remove specific css property

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

el.style.removeProperty('zoom');

// OPTION 2:

el.style.zoom = "";
1

New to Communities?

Join the community