"Phil" <> writes:
> Is there a way preferrably without javascript to link to a webpage
> jumping to a specific location. Kind of like scrollTo()?
Yes, if the "location" has a name (for anchor elements) or id (for other
elements) to identify it. For instance:
<h2><a name="section1">Introduction</a></h2>
<h2 id="section2">More stuff</h2>
Then, you can link specifically to these elements by including a
fragment identifier in your link's URL:
<a href="example.html#section1">The introduction</a>
Or, if it's on the same page as the link, you can use the fragment
identifier by itself:
<a href="#section2">More stuff</a>
More info here:
<http://www.w3.org/TR/WD-html40-970917/struct/links.html>
sherm--
--
My blog:
http://shermspace.blogspot.com
Cocoa programming in Perl:
http://camelbones.sourceforge.net