Skip to content

Instantly share code, notes, and snippets.

@stormbreakers
Created January 27, 2016 09:04
Show Gist options
  • Select an option

  • Save stormbreakers/d9848edf393401bc8753 to your computer and use it in GitHub Desktop.

Select an option

Save stormbreakers/d9848edf393401bc8753 to your computer and use it in GitHub Desktop.
document.getElementById('video-cnt').addEventListener('ended',myHandler,false);
document.getElementById('video-cnt').addEventListener('play',Start,false);
function myHandler(e) {
that.sendGa("Button-Custom_TVC_Video_Ended-Clicked");
console.log('ended');
// What you want to do after the event
}
function Start(){
// What you want to do after the event
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment