Skip to content Skip to sidebar Skip to footer

Set External Link To Youtube Iframe Video

I am using iframe you-tube video in my website. Sample Code: If I click th

Solution 1:

This will not work. To solve your problem you have to use javascript. For reference you can check following thread Detect Click into Iframe using JavaScript

Another Solution is

<divstyle="position:relative"><divstyle="position:absolute;width:414px;height:270px"onclick='window.location.href="http://google.com"' ></div><iframewidth="414"height="270"src="samplecode"frameborder="0"allowfullscreen></iframe></div>

Here I superimposed another div overiframe (we will not set any background for it, so iframe content will be seen) which will have onclick function which will take user to desired url

Post a Comment for "Set External Link To Youtube Iframe Video"