How can I disable html5 video autoplay?
what I\'ve tried:
I'd remove the autoplay attribute, since if the browser encounters it, it autoplays!
autoplay is a HTML boolean attribute, but be aware that the values true and false are not allowed. To represent a false value, you must omit the attribute.
The values "true" and "false" are not allowed on boolean attributes. To represent a false value, the attribute has to be omitted altogether.
Also, the type goes inside the source, like this:
References: