I have an mp4 video that my page visitor can view by clicking the link:
<a href="videos/myvideo.mp4" target=_blank">Introduction to My Product(16:02)</a>
No video tags, etc. I just depend on the visitor's machine having something to play an mp4 video with. (Seems like a good bet.)
Now I'd like to preload the video as soon as the visitor lands on the page. I know images can be preloaded with something like;
<img src="images/img1.png" class="hiddenPic">
where "hiddenPic" is display:none
. Is there something simple like this you can do for videos, to make the video load but never play? The idea, of course, is to make the video start immediately when the link is clicked.
The page is HTML5.
Thanks