Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a footer section on my website where I want to include a back to Top link. Problem is that it can't detect on which page of the site the user is so it sends it in the index html top. Is there any way to achieve this?

I can't use <a href="#">Back to top</a> since I have a base href that links to the index page of the website.

This code worked well, cross browser too:

<a href="javascript:void(0)" onclick="parent.window.scrollTo(0,0);">TOP</a>
share|improve this question

2 Answers

up vote 4 down vote accepted

You don't need php for this. Just add a link like this:

<a href="#">Back to top</a>
share|improve this answer
Forgot to mention, I can't use that since I am using a base href that links to the index of my website. – zefs Oct 23 '12 at 11:05

Add a named anchor in your page just before the content, to specify the top of your current page. Like:

<a name="top"></a>
<!-- Rest of your content here -->

Then in your footer, link to the anchor with:

<a href="#top">Back to top</a>
share|improve this answer
I already created all the pages and although it wouldn't be hard to do so I would prefer an easier way, with a simple code in the footer section. – zefs Oct 23 '12 at 11:05
Alternatively you can use inline javascript: <a href="javascript:void(0)" onclick="window.scrollTop(0)">Back to top</a> – Oldskool Oct 23 '12 at 11:08
Yes but since I got a base href on all my pages, <a href="#"> redirects to the index. How to fix that? – zefs Oct 23 '12 at 11:09
1  
@zefs Use a void link, see updated comment above. – Oldskool Oct 23 '12 at 11:10
That's it, thanks! Although I had to change scrollTop(0) with just scroll(0). Any idea why it's not working on latest Firefox & Opera? – zefs Oct 23 '12 at 11:13
show 1 more comment

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.