HTML5 Video // Completely Hide Controls

Like this:

<video width="300" height="200" autoplay="autoplay">
  <source src="https://stackoverflow.com/questions/14161516/video/supercoolvideo.mp4" type="video/mp4" />
</video>

controls is a boolean attribute:

Note: The values “true” and “false” are not allowed on boolean
attributes. To represent a false value, the attribute has to be
omitted altogether.

Leave a Comment