what is the id/name of the play button that appears over videos on mobile devices?? I need to make a javascript that activates onclick of the play button, and I have no way to inspect elements on my iphone myself, and testing on chrome using iphone 6 view just autoplays video so the play button doesn't show up. I am working on an mvc asp.net website and I need to activate javascript when the user clicks the play button on a mobile device thanks.
<div id="@carouselVideo">
<div id="videoClick" class="videoBannerPosition" style="position:absolute; width:100%; ">
<video src="@Url.Content("~/Content/Video/")@item.selectFile" autoplay loop="" muted style="width:100%;"></video>
</div>
</div>