Is there a way to replicate or trigger the zoom feature of a web browser using Javascript?
the css3 zoom property may help. This may not work accross all browsers.
body { zoom: 200%; }
In javascript:
document.body.style.zoom="300%"