This is my main markup right now.
<div id="video_container">
<video id="video">
<source src="popeye_patriotic_popeye.mpeg" type="video/mp4">
</video>
</div>
<button type="button" id="play_button">Play</button>
basically we have the video box, as well as the "play" button. I am wondering if through javascript, it would be possible to allow this button to play/pause the video. I am not sure if this doable or not, but if it is please let me know how I would go about doing it.
Thanks