15 May 2006 at 13:28 #1 FunkyT FunkyT Soldato Joined 27 Aug 2003 Posts 3,464 Can you remember how to link to a specific place on a webpage when quoting a URL?
15 May 2006 at 14:12 #2 Simebaby Simebaby Associate Joined 19 Oct 2002 Posts 206 Location Oop north - where it's grim... The page you're linking to needs a tag to define the point you want to link to. Then Code: <a href='http://www.somewebsite.com/page.html#section1'>link</a> #section1 being the name of the point above. Might want to move this to HG&P... Last edited: 15 May 2006
The page you're linking to needs a tag to define the point you want to link to. Then Code: <a href='http://www.somewebsite.com/page.html#section1'>link</a> #section1 being the name of the point above. Might want to move this to HG&P...
15 May 2006 at 14:15 #3 Vonhelmet Vonhelmet Caporegime Joined 28 Jun 2005 Posts 48,104 Location On the hoods You put #ANCHOR_NAME after the URL. This is assuming the page makes use of anchors, which is by no means guaranteed.
You put #ANCHOR_NAME after the URL. This is assuming the page makes use of anchors, which is by no means guaranteed.
15 May 2006 at 14:26 #4 Moredhel Moredhel Soldato Joined 11 May 2004 Posts 4,790 Location Gloucester Anchor locations are defined by ID. So if you have <h2 id="sectionc">Title</h2> you could link to it by http://www.domain.com/path/to/page#sectionc It works for the ID of any element, so look out for IDs surrounding the content you want to link to.
Anchor locations are defined by ID. So if you have <h2 id="sectionc">Title</h2> you could link to it by http://www.domain.com/path/to/page#sectionc It works for the ID of any element, so look out for IDs surrounding the content you want to link to.
15 May 2006 at 14:38 #5 FunkyT FunkyT Soldato OP Joined 27 Aug 2003 Posts 3,464 Thanks for the helpful replies. The damn page I'd like to link to doesn't seem to have anchors or IDs
Thanks for the helpful replies. The damn page I'd like to link to doesn't seem to have anchors or IDs