The code below works fine in Internet Explorer, but in Chrome it only works if you are in debug mode, what's wrong?
window.onresize = function (e) {
if (window.outerWidth === screen.width && window.outerHeight == screen.height) {
if (!fullscreen) {
fullscreen = true;
onfullscreenchange(true);
}
} else {
if (fullscreen) {
fullscreen = false;
onfullscreenchange(false);
}
}
};
function onfullscreenchange(full) {
alert(full);
}
Here is an example for listening for if the window has been fullscreened with F11. This code listens not just for
resize
events but also for F11 since theresize
event isn't fired in Chrome when entering fullscreen mode.Live version to try: http://jsbin.com/ciqeb/4/edit?js,output