1

Unfortunately I have no code at all to begin with. After a long search on Google and on Stackoverflow I can't seem to find anything related with this.

Basically I have a button on my webpage saying, for example, "Restore scale", so that when someone clicks on it, the page's zoom/scale restores to 100%. Though I have no clue about how to do this.

Can someone help?

coldpumpkin
  • 711
  • 4
  • 14
  • 30

1 Answers1

0

JQuery and CSS sollution:

$('body').css('MozTransform','scale(1)');
Jacob
  • 3,580
  • 22
  • 82
  • 146