I created a form for participants to enter their car in an upcoming car show. You can view the form at:
www.RacersForCharity.org and select "Online registration."
Several people have been able to sign up without a problem, but two have encountered the following message:
"a part followed by "@" should not contain the symbol " "."
(Unfortunately I still find it impossible to figure out how to insert a photo of the error message on a page in the forum.)
The other problem I am encountering is when someone uses the 'Enter" button instead of "Tab", they send incomplete form data and exit to the payment gateway.
Any suggestions will be appreciated.
Thank you,
Ron Hills
Intermittent error message
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/forms.html
http://www.wysiwygwebbuilder.com/form_wizard.html
Frequently Asked Questions about Forms
Intermittent error message
Ron Hills
Johnson City, NY USA
www.TheRaceReport.TV
www.sal-pa.org
www.sal-pa-dist15.org
www.panelsert.com
Johnson City, NY USA
www.TheRaceReport.TV
www.sal-pa.org
www.sal-pa-dist15.org
www.panelsert.com
Re: Intermittent error message
This error seems to indicate that a space was used in the email address."a part followed by "@" should not contain the symbol " "."
submit is the default behavior of a form when pressing enter. This is standard HTML functionality, not specific to WWB.
But you can use the validation tools to make sure all fields have been entered.
http://wysiwygwebbuilder.com/validation.html
- BaconFries
-
- Posts: 5640
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Intermittent error message
Uploading images to the forum has been disabled.With that said you can always upload the image/screenshot to your own host and simply provide the url to it. Or use one of the many public image host like the following:
https://imgbb.com/
As Pablo's reply you can use the Validation tools or you can try the following in Page HTML Between<head></head>tags* this will simply disable Enter on the keyboard and ensuring the user uses the Submit button to send.
https://imgbb.com/
As Pablo's reply you can use the Validation tools or you can try the following in Page HTML Between<head></head>tags* this will simply disable Enter on the keyboard and ensuring the user uses the Submit button to send.
Code: Select all
<script>
window.addEventListener('keydown',function(e){if(e.keyIdentifier=='U+000A'||e.keyIdentifier=='Enter'||e.keyCode==13){if(e.target.nodeName=='INPUT'&&e.target.type=='text'){e.preventDefault();return false;}}},true);
</script>
Re: Intermittent error message
Thank you Pablo and Bacon Fries fo your FAST solutions!!!
Ron Hills
Ron Hills
Ron Hills
Johnson City, NY USA
www.TheRaceReport.TV
www.sal-pa.org
www.sal-pa-dist15.org
www.panelsert.com
Johnson City, NY USA
www.TheRaceReport.TV
www.sal-pa.org
www.sal-pa-dist15.org
www.panelsert.com