Link to home
Start Free TrialLog in
Avatar of Rowby Goren
Rowby GorenFlag for United States of America

asked on

Call a form within an image map?

I have a graphic.  I want users to be able to click on various image maps on the graphic which call up a form.

I want to use standard HTML, no java (unless absolutely necessary) -- to make it as compatible with as many browsers as possible.

Thanks!
Avatar of cookmyster
cookmyster
Flag of Canada image

So, when you click on the images map, it is going to call the page which has the form???
Avatar of Rowby Goren

ASKER

No, I want it the button to contain all of the form information that is usually found in a submit button.  I'm posting to a cgi script. (it's for a shopping cart I'm creating.)

I guess the scenereo is somewhat like the following:

People see one big image of an *assortment* of toys.  They click on the toy they want to purchase, and they area taken to the checkout section of a shopping cart.

To repeat: The image map calls up the cgi program (using the standard form peramaters) and are taken to the checkout.  

I assume this can be done.  Right?  Again, I don't want to take them to another page where they then push the form button.  

Thanks!

Rowby
Avatar of garrethg
garrethg

As long as you're not passing sensitive information how about just passing the parameters as an URL encoded string via the HREF? That's all a form with the get method does anyway.

e.g.
<AREA HREF="
http://www.myDomain.com/myCGI?param1=toy1¶m2=price">
ASKER CERTIFIED SOLUTION
Avatar of banjones
banjones

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The javascript function in the <area> tab should obviously been 'buyToy()'...

Doh!!