In chrome (7.0.517.44) I am using the <video> tag and the audio will only play every other time the video is played.
Why is the audio not always playing along with the video?
In page:
<div id="VideoShow">
<video id="VideoPlay" width=800 height=600></video>
</div>
On click this JS is run.
function playVideo(videoName) {
$("#VideoShow").fadeIn(300);
var Vid = document.getElementsByTagName('video')[0];
Vid.src = videoName;
Vid.play();
Vid.addEventListener('ended', function(e) {
closeVideo();
}, false);
}
function closeVideo() {
var Vid = document.getElementsByTagName('video')[0];
Vid.removeEventListener('ended', arguments.callee, false);
Vid.pause();
$("#VideoShow").fadeOut(300);
}