RE: Form Post with Image

2001-01-18 Thread Katherine Maltby
Like this; input name="submit" type="image" src="image.gif" border="0" (border=0 is for versions of Netscape) Kath Katherine Maltby Senior Producer -- United Kingdom http://www.thoughtbubble.co.uk/ Ph: +44 (0) 20 7387 8890 -- New Zealand

Re: Form Post with Image

2001-01-18 Thread Wjreichard
You can execute the onclick event of the image to call the submit method of the form. In Javescript you would use something like: img src="someimage.gif" onclick="document.frmYourForm.submit();" Bill Reichard Willow Gold [EMAIL PROTECTED] http://www.willowgold.com In a message dated 1/18/01

RE: Form Post with Image

2001-01-18 Thread Raymond B.
input type="Image" src="image.ext" or an onclick even to submit the form w/ JS. Both have their drawbacks, you can also use CSS to change the style of the submit button itself. -Original Message- From: Albert K Arhin [mailto:[EMAIL PROTECTED]] Sent: January 18, 2001 04:56 To: CF-Talk

RE: Form Post with Image

2001-01-18 Thread Adam Reynolds
Avoid this if you can. Only takes one person without JS enabled and bingo...they can't submit the form...not good... -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Thursday, January 18, 2001 11:31 AM To: CF-Talk Subject:Re: Form Post with Image