PDA

Click to See Complete Forum and Search --> : Submit HTML form using hyperlink ??


Oliver
Jun 10th, 2000, 01:45 AM
HI :)

Does anyone know if there is a way in which I could send the contents of an HTML form using a hyperlink, as apposed to a submit button.

Help will be greatly appreciated

Yours sincerely

Oliver Hoppe

Jony5
Jun 10th, 2000, 04:50 AM
Try this one

<FORM ACTION="mailto:(Your Mail)?subject=(the subject)" METHOD="post" ENCTYPE="text/plain"

noone
Jun 10th, 2000, 09:02 AM
You could do it using JS but then browsers without JS support will be screwed over.
<a href="javascript:void" onClick="document.formname.submit();">somestuffhere</a>