Skip to content Skip to sidebar Skip to footer

Browser Window Minimize/maximize Event

Possible Duplicate: Firefox extension: check if window is minimized I've written a Firefox extension that need to be notified whenever you minimize/restore the browser window. W

Solution 1:

You should use the sizemodechange event, available in Firefox 8 and above. Note that you need to check whether window.windowState really changed, before Firefox 12 this event might fire during a regular resize.


Post a Comment for "Browser Window Minimize/maximize Event"