I have a survey on a website, and there seems to be some issues with the users hitting enter (I don\'t know why) and accidentally submitting the survey (form) without clicki
Go into your css and add that to it then will automatically block the submission of your formular as long as you have submit input if you no longer want it you can delete it or type activate
and deactivate
instead
input:disabled {
background: gainsboro;
}
input[value]:disabled {
color: whitesmoke;
}