I want to disable controls attribute <video>
. Simple omission of controls
attribute works fine for Chrome, Chrome Mobile and Firefox, but it does not work for mobile Safari and UC browsers. I also tried use
<video onplaying="this.controls=false" > ...
but it also does not work. How can I solve the problem?
Thanks.