Created
January 27, 2016 09:04
-
-
Save stormbreakers/d9848edf393401bc8753 to your computer and use it in GitHub Desktop.
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
| 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