I'm stuck in a project where I want to auto play video using html5 video. It works fine on desktop browser, but on Android 4.1 default browser it requires me to "touch" (or click) video element (or play button)to play video.
I have tried number of ways:
- use trigger
- manually calling play function on page load
- using autoplay attribute
but none of above works in Android browser.
One solution which I think is to simulate click event on page load but is it programmatically possible to simulate click function?