kev,

:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
: From: <[EMAIL PROTECTED]>
:
: Ok, what i am trying to do is make an imagemap that
: will A) allow a submit to Login, and B) allow a submit
: to signup.  Is there anyway possible to do this inside a
: form with an image map...
:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

just use an image input and check for the coordinates server-side.

<input
  type="image"
  src="login_signup.gif"
  height="25"
  width="100"
  name="submit">

when clicked you will get values like this:

form.submit.x = 33
form.submit.y = 17

just check that the x value of form.submit is within the constraints of your
login or signup portions of the image and redirect or process accordingly.

good luck,

.jeff

name://jeff.howden
game://web.development
http://www.evolt.org/
mailto:[EMAIL PROTECTED]


------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to