Click here to Skip to main content
15,896,153 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI,

I am using HTML5 video tag to play video.
the video actions (play/pause etc..) should be triggered by clicking on manual buttons.

All are working except Fullscreen in IE, we searched for long time but not get any right solutions.
All the solutions are working in the browsers other than IE.

are there any plugins or tools or any cheat solution to solve this issue in IE?
please help me to solve.

Thanks in Advance :)
Posted
Updated 10-Jul-14 21:02pm
v2
Comments
krishnaMurali 16-Jul-14 0:14am    
Anybody please provide me a solution
Kornfeld Eliyahu Peter 21-Jul-14 1:51am    
Full screen of IE or IE at all?
krishnaMurali 22-Jul-14 1:22am    
the video should fullscreen on clicking on a manual button.. say "FullScreen"
i tried this solution, but not worked in IE

function makeFullScreen(divObj) {
//Use the specification method before using prefixed versions
if (divObj.requestFullscreen) {
divObj.requestFullscreen();
}
else if (divObj.msRequestFullscreen) {
divObj.msRequestFullscreen();
}
else if (divObj.mozRequestFullScreen) {
divObj.mozRequestFullScreen();
}
else if (divObj.webkitRequestFullscreen) {
divObj.webkitRequestFullscreen();
} else {
console.log("Fullscreen API is not supported");
}

}
Kornfeld Eliyahu Peter 22-Jul-14 1:49am    
My question was if your solution works in IE but not in IE full-screen, or does not work at all in IE...
krishnaMurali 22-Jul-14 5:33am    
not work at all in IE (IE9, IE10)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900