Good question.... Unfortunately the only way I know uses JS... But does have a noscript alternative which will show the normal submit button if the user does not have JS enabled. <a href="javascript:document.FORM-NAME.submit();">Click here</a> <noscript><input type="submit" name="Click here"></noscript> Code (markup):
You might also want to put this within the same 'noscript' tag: (So that the text link does not actually show when JS in disabled) <style type="text/css"> #form1 a { display:none; } </style> Code (markup):