Is there a way to have a video play inline on iOS without expanding to full screen when clicking the play button?
I attempted
to add webkit-playsinline
<video width="400" controls webkit-playsinline>
<source src="mov_bbb.mp4" type="video/mp4">
<source src="mov_bbb.ogg" type="video/ogg">
Your browser does not support HTML5 video.
</video>
I also tried incorporating it in this JSFiddle example <-- Please view on your Phone/Tablet
Any suggestions on how to achieve this?