I am working on website and came across to JavaScript and need HELP.
I have a Youtube video and two images. One image is shown when we display the site, then the second image is shown after mouseover. But this second image should also be a link to the video. One major thing is that I WANT TO KEEP THE VIDEO in the same page (no pop-ups). Also the sizes of the images are small, but the video should be resized.
So far I know how to do the mouseover, but do not know how to make the video work in the same page. Thanks
My code of mouseover ---
<img src="1.png" onmouseover="this.src='2.png'" onmouseout="this.src='1.png'"/>