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 JavaS
div.style.zoom = 1.2
You can also do this in jQuery by saying $(selector).css("zoom", "")
$(selector).css("zoom", "")