It might be a too simple question,however I couldn't good answer yet. I have simple video player like this.
<video src="test.mp4" id="mainVideo"></video>
<input type="button" value="play" onClick="playVideo()">
<script>
var v = document.getElementById("mainVideo");
function playVideo() {
v.play();
}
</script>
On Desktop browser,If you push the play button the video played in the place where tag is placed.
On iOS, the native iOS (fullscreen payer) appeares and play video. I don't want to use native iOS player though, How can I make it work same as the desktop player does??