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
This should do the trick - setting the inline style to normal for zoom:
$('div').attr("style", "zoom:normal;");