I want to make it so that when you open the page, it opens as if the user himself increased the page through "ctr +" to 300%.
Is it possible to access browser zoom via JS, if yes, how?
I want to make it so that when you open the page, it opens as if the user himself increased the page through "ctr +" to 300%.
Is it possible to access browser zoom via JS, if yes, how?
Try:
document.body.style.zoom = 3 Source: https://ru.stackoverflow.com/questions/34576/
All Articles