Log in

View Full Version : Need A Code.



seattle-west
04-08-2007, 11:22 PM
I need a code where once you click on a link on the page it goes down to the middle or bottom of the page anyone know a code for this

For Instance if you go Here (http://cgi.ebay.com/HENRY-V-Kenneth-Branaghs-Stunning-Production-DVD-New_W0QQitemZ280098630939QQihZ018QQcategoryZ617QQrdZ1QQcmdZViewItem#pmt)
and scroll down and click on payment info on the top nav it will take you to the middle of the page

mburt
04-08-2007, 11:24 PM
You can use page anchors.
For example, you can link to an anchor using the following syntax:

<a href="#myAnchor">go to myAnchor</a>

Then place the anchor accordingly on the page:

<a name="myAnchor"></a>
The link will go to where it's linked anchor is placed on the page.

seattle-west
04-08-2007, 11:28 PM
thanks a lot mburt

seattle-west
04-09-2007, 12:45 AM
wait how do you do it on a image though?

seattle-west
04-09-2007, 12:46 AM
because imaged mapped all the links

mburt
04-09-2007, 12:57 AM
<a name="imageAnchor"><img src="foo"></a>