Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a javascript or jQuery method to minimize the current browser window?

share|improve this question
1  
That would be pretty scary! – BobbyShaftoe Mar 2 '09 at 10:00

3 Answers

up vote 3 down vote accepted

There is no way to minimize the browser window within javascript.

There are ways to change the size of the window, but no true minimization (nice word)

share|improve this answer

No, there isn't. However, depending on what you're doing and which browsers you're targeting, you could play around with the blur and focus events of the window to achieve similar effect.

share|improve this answer
how could that be done with firefox? – Thariama Aug 15 '11 at 16:23

I hope this is what you are looking for:

<SCRIPT LANGUAGE="JavaScript">

function Minimize()
{
window.innerWidth = 100;
window.innerHeight = 100;
window.screenX = screen.width;
window.screenY = screen.height;
alwaysLowered = true;
}

function Maximize()
{
window.innerWidth = screen.width;
window.innerHeight = screen.height;
window.screenX = 0;
window.screenY = 0;
alwaysLowered = false;
}
</SCRIPT>

<A HREF="javascript:onClick=Minimize()">Minimize</A>
<A HREF="javascript:onClick=Maximize()">Maximize</A> 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.