Here is a fiddle showing how to enlarge an HTML element. This code can be easily applied to your situation by simply aiming the element inside the iframe (possibly on the body of the document).
https://jsfiddle.net/xzn1s7ks/1/
here is an important function:
function zoom(element, level){
if (element.style){
if (element.style.zoom != undefined)
element.style.zoom = level;
if (element.style.MozTransform != undefined)
element.style.MozTransform = 'scale(' + level + ')';
if (element.style.WebkitTransform != undefined)
element.style.WebkitTransform = 'scale(' + level + ')';
}
}
The item must be the item you want to increase, and the level should be decimal. 1.0 - the default size, 1.5 - 150%.
source
share