I use a video tag and bind it using bind or live. In both cases, it does not work .Below is my code. Maybe I’m doing something wrong and I can’t catch him.
<video width="videoWidth"
height="videoHeight"
poster="../Poster/poster.png"
id="videoId"
controls="controls"
muted="true"
seeking="true"
paused="true" >
<source src="../video/trailer.mp4" type="video/mp4"/>
<source src="../video/trailer.ogv" type="video/ogv"/>
<source src="../video/trailer.webm" type="video/webm"/>
Your browser does not support the video tag.
</video>
Here is the JS include file for event binding.
$("#videoId").bind('ended',function() {
alert("Entered");
});
UPDATE
I am updating the previous JS and now its working for all video events. Now I'm stuck in an Event error where Event will fire based on the event code. Maybe I'm wrong when writing code, but the error event does not work. Below is my js
$(document).ready(function(){
$("#videoId").bind('play',function() {
alert("Play");
});
$("#videoId").bind('canplay',function() {
alert("Can Play");
});
$("#videoId").bind('empited',function() {
alert("Empited");
});
$("#videoId").bind('ended',function() {
alert("Ended");
});
$("#videoId").bind('loadstart',function() {
alert("Load Start");
});
$("#videoId").bind('pause',function() {
alert("Pause");
});
$("#videoId").bind('playing',function() {
alert("Playing");
});
$("#videoId").bind('progress',function() {
alert("Progress");
});
$("#videoId").bind('suspend',function() {
alert("Suspend");
});
$("#videoId").bind('volumechange',function() {
alert("Volume");
});
$("#videoId").bind('waiting',function() {
alert("waiting");
});
$("#videoId").bind('error',function(e,ui) {
switch (e.target.error.code) {
case e.target.error.MEDIA_ERR_ABORTED:
alert('You aborted the video playback.');
break;
case e.target.error.MEDIA_ERR_NETWORK:
alert('A network error caused the video download to fail part-way.');
break;
case e.target.error.MEDIA_ERR_DECODE:
alert('The video playback was aborted due to a corruption problem or because the video used features your browser did not support.');
break;
case e.target.error.MEDIA_ERR_SRC_NOT_SUPPORTED:
alert('The video could not be loaded, either because the server or network failed or because the format is not supported.');
break;
default:
alert('An unknown error occurred.');
break;
}
});
});
In the console, I get "Get".
source
share