G Gothic Seraphim New member Nov 12, 2009 #1 I need html code that applies to a link, so that when the link is clicked, the user is sent to a different part of the same page.
I need html code that applies to a link, so that when the link is clicked, the user is sent to a different part of the same page.
M Marthinus Guest Nov 12, 2009 #2 Same as an link to another page just reference it like this. <a href="#id">id</a> <a name="id">id</a> Best of luck
Same as an link to another page just reference it like this. <a href="#id">id</a> <a name="id">id</a> Best of luck
G guitrguy New member Nov 12, 2009 #4 On the part that you link, put: <a href="Section_2">To Section 2</a> On the part that you want to go to, put: <a name="Section_2">Section 2</a>
On the part that you link, put: <a href="Section_2">To Section 2</a> On the part that you want to go to, put: <a name="Section_2">Section 2</a>