is it possible to remove a CSS property of an element using JavaScript ?
e.g. I have div.style.zoom = 1.2
,
now i want to remove the zoom property through JavaScript ?
is it possible to remove a CSS property of an element using JavaScript ?
e.g. I have div.style.zoom = 1.2
,
now i want to remove the zoom property through JavaScript ?
You have two options:
OPTION 1:
You can use removeProperty method. It will remove a style from an element.
el.style.removeProperty('zoom');
OPTION 2:
You can set it to the default value:
el.style.zoom = "";
The effective zoom will now be whatever follows from the definitions set in the stylesheets (through link and style tags). So this syntax will only modify the local style of this element.