Link Relationship (XFN)
-
Greetings…
I’m looking to make a page that will scroll-to-id without anything being clicked or refreshed. Is there a way this can easily be done natively?
I tried the following code, which worked perfectly – except the page just jumps down to the ID. Apparently, the only thing missing is the rel=”m_PageScroll2id” so I tried adding it several ways, but it just isn’t working fro me.
<script type="text/javascript"> var count = 15; var redirect = "#after-into-wrap"; function countDown(){ var timer = document.getElementById("timer"); if(count > 0){ count--; timer.innerHTML = ""; setTimeout("countDown()", 1000); }else{ window.location.href = redirect; } } </script> <span id="timer"> <script type="text/javascript">countDown();</script> </span>
Any ideas on accomplishing this would be greatly appreciated.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Link Relationship (XFN)’ is closed to new replies.