Can anyone help me add a hyperlink to an iframe?

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>
 
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