-3

any other option other than zoom property and transform-scale property ? Only using JavaScript or jQuery .

karan
  • 1
  • 1
  • Maybe this will help? http://stackoverflow.com/questions/1055336/changing-the-browser-zoom-level – NewToJS May 16 '17 at 09:36

1 Answers1

0

Try this:

document.body.style.zoom = 2.0;

However it is not supported in every browser:

http://caniuse.com/#feat=css-zoom

Gábor Nádai
  • 370
  • 2
  • 4