Answer the question
In order to leave comments, you need to log in
How to resize the browser window when zooming?
Actually a question on a subject, here is my code
$(window).on('resize',function(){
outW = window.outerWidth
outH = window.outerHeight
inW = window.innerWidth
inH = window.innerHeight
x = (outW + (outW - inW - 16));
y = (outH + (outH - inH - 67));
window.resizeTo(x,y);
window.focus();
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question