View previous topic :: View next topic |
Author |
Message |
contactG
Joined: 10 Dec 2014 Posts: 1
|
Posted: Wed Dec 10, 2014 8:16 pm Post subject: input name="submit" conflicts with Office 365 and |
|
|
To myContactForm.com developers:
Hopefully it will be possible to add another input name such as submit email, so the new name would be input name="submit email"
The input name="submit" conflicts with code snippets in Office 365 and SharePoint, and the form cannot be saved with a code snippet.
(submit is a reserved action in Office 365 and SharePoint)
Thanks for you consideration for the enhancement. |
|
Back to top |
|
|
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Fri Dec 12, 2014 3:47 am Post subject: Reply |
|
|
You can manually change this bit of code without changing the form's function. You can change:
Code: |
<input name="submit" |
To:
Code: |
<input name="whateveryouwant |
This will not impact the function of the form.
Nick Ladd
myContactForm.com |
|
Back to top |
|
|
|