I have a single-page layout that uses # in a fixed navigation to move up and down the page. When the page loads I want the viewport to display the second section not the top section.

Do I have to use something like an "onload" go to #first when the page is loaded in the browser?

Here is a website that accomplishes what I am trying to do: http://volll.com/#section_main

<nav>
  <ul>
    <li><a href="#top">Top</a></li>
    <li><a href="#first">First</a></li>
    <li><a href="#second">Second</a></li>
 </ul>
</nav>


<section id="top">
  <h2>Top</h2>
  <p> blah </p>
</section>

<section id="first">
  <h1>First</h1>
  <p>You see this first</p>
</section>

<section id="second">
   <h2>Two</h2>
   <p>blah</p>
</section>
link|improve this question
Just use "example.com/#second";. – hafichuk Nov 1 '11 at 4:13
FYI, the example page you provided does not load. – hafichuk Nov 1 '11 at 4:13
example.com/#second -how does that work if the page is index.html? confused, sorry. thanks for the fast response btw. – jonky Nov 1 '11 at 4:27
Use index.html/#second.It will work. – Rohan Patil Nov 1 '11 at 7:22
feedback

1 Answer

<body onload="window.location='#second'">
link|improve this answer
This is grate work fine. – Sameera Thilakasiri Dec 15 '11 at 15:43
feedback

Your Answer

 
or
required, but never shown

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