Here you go:-
Paste this code in your head tag i.e. between
<head> and
</head>
Code:
<script type="text/javascript">
document.write('<style type="text/css">#timed{display:none;}<\/style>')
function delay_link(){
var d=delay_link, t=document.getElementById('timed');
if(d.c&&d.c.nodeValue.replace(/[^\d]*/,'')-1>0){
d.c.nodeValue='\xa0\xa0'+(d.c.nodeValue.replace(/[^\d]*/,'')-1);
setTimeout('delay_link()', 1000)
return;
}
else if(!d.c){
d.c=document.createTextNode('15');
t.parentNode.insertBefore(d.c,t);
setTimeout('delay_link()', 1000)
return;
}
d.c.nodeValue='';
t.style.display='inline';
}
</script>
Then paste this code in your body tag i.e. between
<body> and
</body>
Code:
<a id="timed" href="http://www.example.com">Enter Forums</a></div>
<script type="text/javascript">delay_link();</script>
You may change the URL above to point to your forums. This should work for you !!