I create my own HTML 5 browser. All controls work separately from how the full-screen mode in IE 10, Chrome, Safari and Firefox works fine.
My JavaScript skills are not the best, so it would be great if someone could explain things in a simple way for me, that would be great.
I read on some website that IE does not support full screen mode, if so, why can I go to full screen using the IE10 browser controls? (hate Microsoft so shit and back at all!)
Thank you for your help and suggestions! thanks in advance!
This is what I still have for my fullscreen function:
function toggleFullScreen() { if(vid.requestFullScreen) { vid.requestFullScreen(); } else if(vid.webkitRequestFullScreen) { vid.webkitRequestFullScreen(); } else if(vid.mozRequestFullScreen) { vid.mozRequestFullScreen(); } }
javascript internet-explorer html5-video fullscreen
001221
source share