I am trying to write an event handler that determines if I have a video player in full screen or "normal" mode.
I tried using
document.addEventListener("fullscreenchange", myfunc, false);
but this does not work in IE, I implemented the same for firefox and chrome using the webkitfullscreenchange and mozfullscreenchange event. Is there any other event that I can use in IE for this? Or another way to do this?
Any help would be greatly appreciated. Thanks!
source share