Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use this code, and it works, but it only works one time. How come?

<script type="text/javascript">
function goToAnchor(name){
window.location.hash = name;}
</script>


<li onclick="goToAnchor('topp');"><a href="test.html" target="iframetest">Tst</a></li>
share|improve this question

2 Answers

up vote 0 down vote accepted

The first time your call it, it changes window.location.hash and causes the browser to scroll to the ID or anchor you specified. The second time, window.location.hash is already set to topp (or whatever you passed to goToAnchor the first time) and since the hash hasn't changed the browser doesn't change the scroll position.

There are various ways to fix this:

  1. Don't use JavaScript. Just use links like this: <a href='#topp'>Topp</a>
  2. Use the scrollIntoView function to scroll to the element you're targetting:

    document.getElementById('topp').scrollIntoView();
    
share|improve this answer

Do you need javascript?

<li><a href="test.html#topp" target="iframetest">Tst</a><li>
share|improve this answer
That won't work because the page test.html is opened inside the iframetest and I want the parent page to go to the anchor – Chatrine Karima Nov 13 '12 at 10:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.