Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How exit from iPhone Full Screen of HTML 5 VIdeo player when video is done playing? [duplicate]

I am using Cordova phonegap. I want to exit from full screen once video is ended. What should I use here?

Below is the code I use for video end detection:

$("#videoId").bind('ended',function(){
    // Full screen exit code here
}
like image 809
Shreejibawa Avatar asked Aug 29 '14 06:08

Shreejibawa


1 Answers

You might want to use this one :

 $("#videoId")[0].webkitExitFullScreen();

Hope it will help you :)

like image 63
Anuj Avatar answered Oct 19 '22 16:10

Anuj