Trash that “Back to Top” Link

It would seem that perfection is attained not when no more can be added, but when no more can be removed.

- Antoine de Saint Exupéry



While most would argue that the principles espoused in the above quote might also be applied to the quote itself, it would serve us better to consider how we can attempt perfection in our User Interface designs instead.

The most complete litany of reasons why you should spend your page weight on more useful bytes has been compiled by Jukka Korpela, although he seems to both confirm that they are harmful and still use them on his site.

The rules of engagement I find useful when dealing with the ill-fated “Back to Top” or its ugly stepsister “Top of Page” link are as follows:

  1. Delete the link.

Really, you don’t need the link. It’s a sacred cow remnant of a time when people believed that all content needed to be positioned above the page fold.

Guess what? People know how to scroll! They know how to scroll down, they know how to scroll up. Considering this prerequisite has been met, it becomes very apparent that the “Back to Top” link shares an unnecessary overlap in functionality with the scrollbar and is thus, unnecessary itself.

If you have an incredibly long page with a full set of “Table of Contents” links, it would be better to position your table of contents fixed to the viewport, so as to make it always available to the user. If the Table of Contents is always available, the user will never have to click a link as a shortcut to find it.

While not a usability epidemic, the “Back to Top” link is still widely used. Instant Shift and Smashing Magazine both have articles with hundreds of examples of sites with these links.

Don’t agree? If you’re stubborn as hell and hate simplicity, you’re going to keep the link on your page no matter what reasons are presented. In that case, at the very least follow these two guidelines:

  1. Use progressive enhancement:
    <a href="#" id="back-to-top">Back to Top</a>
    // jQuery Prerequisite
    $('#back-to-top').click(function() {
        window.scrollTo(0,0);
     
        // don't change the hash if not needed
        return false;
    });
  2. Hide the link if the page doesn’t have a scrollbar. If no scrollbar exists, the user will always be “at the top.”
    // Continuing with Previous Example
    $(function() {
        $('#back-to-top').hide();
    });
     
    // If the page scrolls, we know there is a scrollbar.
    $(window).scroll(function() {
        $('#back-to-top').show();
    });
     
    // For completeness, you may also want to
    //   add logic to the "resize" event.

Really though, just delete the link.

VN:D [1.9.3_1094]
Rating: 3.3/5 (7 votes cast)
Trash that "Back to Top" Link, 3.3 out of 5 based on 7 ratings
This entry was posted in Interface Design, JavaScript and tagged , . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

3 Comments

  1. Jordan
    Posted February 9, 2010 at 3:00 pm | Permalink

    Is it ironic, then, that I read this article through Feedly, which has a “back to top” link at the bottom? I’ve often wondered if the link itself has ever been useful, considering the Home key on the keyboard exists.

    I’m probably the only one that uses it.

  2. jitendra vyas
    Posted May 21, 2010 at 9:15 am | Permalink

    href should never be blank.

  3. Zach Leatherman
    Posted May 22, 2010 at 8:04 pm | Permalink

    “#” isn’t blank, is it? Might be better to have a tag at the top with a more descriptive ID that you could point to, though.

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Additional comments powered by BackType