I want a button that zoom in (increase font size is the main objective but images and tables etc is also wanted)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is the zoom css3 property which does exactly this, the latest webkit browsers (chrome, safari) support it.
edit: apparently even IE6 supports it in some way, check comments below
setting the zoom css property on your body or container should to the trick. Could be as simple as
$('body').css('zoom', '200%');with jQuery.Check http://jsfiddle.net/Ks6Yn/1/ for an example