Skip to content

Instantly share code, notes, and snippets.

@gaupoit
Created March 27, 2020 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaupoit/4498db190b73d2d4c3e1dbc71967fce7 to your computer and use it in GitHub Desktop.
Save gaupoit/4498db190b73d2d4c3e1dbc71967fce7 to your computer and use it in GitHub Desktop.
Handle players event
(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