views:

44

answers:

2

Is there a way to replicate or trigger the zoom feature of a web browser using Javascript?

A: 

the css3 zoom property may help. This may not work accross all browsers.

body {
  zoom: 200%;
}
Ben Rowe
A: 

In javascript:

document.body.style.zoom="300%"
Todd H.