Created
March 27, 2020 12:36
-
-
Save gaupoit/4498db190b73d2d4c3e1dbc71967fce7 to your computer and use it in GitHub Desktop.
Handle players event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
'use strict'; | |
$(window).load(function () { | |
$('video').on('ended', function (evt) { | |
console.log('Video ended'); | |
}); | |
}); | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment