There is a problem for calling twice timeupdate. My code is:
$("video").on(
"timeupdate",
function(event){
alert('work');
}
);
it works, but if I do this:
$('#video').html( $('#newVideo').html());
the previous code does not work.
I try the following way does not work either:
<video id="video">
`$ (document) .on (" timeupdate ", 'video',
$ (document) .delegate ('video',
$ ("video"). To tie (
$ ("video") .live (`
source
share