jQuery Zoomer is a library which lets you zoom up your iframes using CSS transforms.
Tested and working: Chrome, FF3.6+, IE8+
$('iframe.zoomer').zoomer({$('iframe.zoomer').zoomer({zoom: 0.5,width: 200});
(Note: this example has already been run on the iFrame below.)
Click the iFrame to open the URL in a separate browser window/tab.
Once a Zoomer has already been zoomed, you can adjust the zoom amount by later calling:
zoom = 0.25; // Change me to any number 0–1 and then hit "Run"zoom = 0.25; // Change me to any number 0–1 and then hit "Run"$iframe = $('iframe.demo');$iframe.data().zoomer.zoom = zoom;$iframe.zoomer('refresh');
For a full reference, see our API documentation.