congdantoancau

Facebook video stop play next

Oct 11th, 2019
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.34 KB | None | 0 0
  1. /* Jquery video end event
  2. * Source: https://stackoverflow.com/questions/14517639/executing-function-at-end-of-html5-video
  3. */
  4.  
  5. function setEndVideo() {
  6.  
  7.     var vid = document.getElementById('u_1_6');
  8.     //console.log(vid);
  9.     if (vid) {
  10.         vid.onended = function(event) {
  11.             this.currentTime = 0;
  12.         };
  13.     }
  14. }
  15.  
  16. setTimeout(setEndVideo, 5000);
Add Comment
Please, Sign In to add comment