Linking question

nwp2009

Newbie
Joined
Sep 11, 2009
Messages
25
Reaction score
10
Hello,

Ok, on one of my sites, I have a dropdown form, well two, and there are 18 price options, and on the page, I have the prices listed, so that the consumers can understand as the packages that are being bought gets bigger, so do the monthly/yearly prices. How can I link the prices to a specific part of the form, so that they don't have to scroll through the form to find the right option?

Example

the package is 30/mo

I want the link to go to the part of the payment dropdown form that will go directly to the package of 30/mo
 
I would like to know the answer as well, so are there any answers? Yes, it can be done, no, it can't?
 
Yes that 's possible. You can use this:

Code:
<a id="package15">the package is 30/mo</a>

Then from your dropdownbox you link that package option to '#package15' (that 's the link, remove the '). You will get to that part of the page.

If you want something better, it 's possible with ajax too for example. You select an option and the content you want will appear on specified part.
 
Back
Top