As the title says, what I want to do is after clicking a link I go to some section in another page, and that section should scroll to top. Also, I don't want to use jquery for this, I only want to use html. Thanks! following is the code from the original page:
<TABLE cellspacing="11px" style="margin-left:3px">
<TR>
<TD><A href="detail.html#patents">PATENT</A></TD>
<TD><A href="detail.html#trademarks">TRADEMARKS</A></TD>
<TD><A href="detail.html#ipLawAndPolicy">IP LAW & POLICY</A></TD>
<TD><A href="detail.html#productsAndServices">PRODUCTS & SERVICES</A></TD>
<TD><A href="detail.html#inventors">INVENTORS</A></TD>
<TD><A href="detail.html#newsAndNotices">NEWS & NOTICES</A></TD>
<TD><A href="detail.html#faqs">FAQs</A></TD>
</TR>
</TABLE>
Following is the code from target page:
<BODY>
<P id="patents">PATENTS</P>
<HR />
<P id="trademarks">TRADEMARKS</P>
<HR />
<P id="ipLawAndPolicy">IP LAW & POLICY</P>
<HR />
<P id="productsAndServices">PRODUCTS & SERVICES</P>
<HR />
<P id="inventors">INVENTORS</P>
<HR />
<P id="newsAndNotices">NEWS & NOTICES</P>
<HR />
<P id="faqs">FAQs</P>
</BODY>