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
Printable View
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
Try this one
<FORM ACTION="mailto:(Your Mail)?subject=(the subject)" METHOD="post" ENCTYPE="text/plain"
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>