Skip to content

Instantly share code, notes, and snippets.

@FuruholmAnton
Last active March 29, 2016 14:17
Show Gist options
  • Save FuruholmAnton/5a86c0a2114bbb15cb02 to your computer and use it in GitHub Desktop.
Save FuruholmAnton/5a86c0a2114bbb15cb02 to your computer and use it in GitHub Desktop.
var src = document.querySelector("video");
src.addEventListener("click", function() {
this.paused === true ? this.play() : this.pause();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment