I am using object.style.zoom for making zoom inside the div tag, it is working in IE. I need it for Firefox. Please guide me. Can I get any replacement for style.zoom.
I am using object.style.zoom for making zoom inside the div tag, it is working
Share
zoomis not implemented in Firefox.The “replacement” is
transformfrom CSS3: https://developer.mozilla.org/En/transformA JavaScript example for Firefox:
It’s worth pointing out that CSS3 transforms are supported in all modern browsers. You should only be using
zoomas a fallback for IE8 and lower.