I have been trying to connect the dots for days but due to lack of my knowledge in positioning and jQuery . I am making code a mess. I am trying to play video on click on th
If you're using jQuery on other pages, I presume you are also using HTML. I believe I've done a similar thing with HTML with the .click
method and also "controls loop" with...
<video width="320" height="240" controls loop>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
</video>
This would continually loop after the button is clicked, and should disappear.