Skip to content

Instantly share code, notes, and snippets.

@uahim
Last active August 13, 2024 16:47
Show Gist options
  • Save uahim/95bfe3a47c0d0c1d02e0eb9c3a344369 to your computer and use it in GitHub Desktop.
Save uahim/95bfe3a47c0d0c1d02e0eb9c3a344369 to your computer and use it in GitHub Desktop.
html5 video play/pause toggle universal bookmarklet incl. zattoo condition
javascript: var v; if (location.host == "zattoo.com" ) { v = document.getElementById("player_video_node") } else { v = document.getElementsByTagName("video")[0] } v.paused == false ? v.pause() : v.play(); void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment