Can anyone help me add a hyperlink to an iframe?

Associate
Joined
7 Aug 2011
Posts
726
Location
Planet Earth
you could use jquery/js

so <iframe id="link">....</iframe>

<script>
$(document.ready(function(){
$("#link").click(function(){
var link = $(this).attr("href");
window.location.href= link;
});
});
</script>
 
Soldato
OP
Joined
28 Dec 2009
Posts
6,786
Location
Wales
Great cheers mate. I ahve considered another problem using the banner as flash though, compatability with ios devices.

Trying to convert it to a GIF, got Adobe CS5 but really struggling. Anyone know an easy way to convert or has maybe 5 mins spare?
 
Back
Top Bottom