vForums Support > Programming & Coding :: Code Requests & Support :: > [Request] Clickable Banner
[Request] Clickable Banner - Posted By Nick (nickb) on 11th Sep 08 at 12:08am
I need a code that when you click on the banner it goes to another link
example
banner (no link)
banner (when clicked on goes to google.com (or any other link you specify in the code)
Thanks,
Darkmage
Re: [Request] Clickable Banner - Posted By Ross (admin) on 11th Sep 08 at 8:25am
<script type="text/javascript">
<!--
get('img', TAG).item(0).onclick = function() { location.href = 'http://google.com'; }
get('img', TAG).item(0).style.cursor = 'pointer';
//-->
</script>
Global Header
Re: [Request] Clickable Banner - Posted By Nick (nickb) on 11th Sep 08 at 8:27am
Thanks Ross it works ^_^