Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html> 
<html> 
<body> 
<video id="myVideo" width="320" height="176" src="https://www.w3schools.com/tags/mov_bbb.mp4" controls></video>
<script>
var vid = document.getElementById("myVideo");
vid.addEventListener('keydown', function(e) {
  console.log(vid.currentTime);
  if (e.keyCode == 32) {
    e.preventDefault();
  }
}, true);
</script> 
</body> 
</html>
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
htwappro
0viewers