I make my JSON script with a form and a button, but when I demo it on someone, they can press the submit button whenever they like. Here is my code:
<form action="action_page.php" method="GET">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"<br><br>
<label for="lname">Last name:</label>
<input type="text" id="lname" name="lname"<br><br>
</form>
All I need now is validation and how to lock or hide the button.
I tried using <script>
with function
and getElementById
but I simply do not know how to lock it. Here is the message that will be inputted when it is locked and the form isn't completed:
You have not finished the information input for the survey. Please input "Your First Name" and "Your Last Name" to enter the survey.
When they finish, I will input a loading icon until fully loaded.
Code Language(s)
I use fiddles to make my code, so I use:- HTML
- JSON
- Pinch of jQuery (loading icon)
Answer Expectations
In my answers, I need:
- Recommended Code Language
- Code for note purposes
- Crossed out attributes
- Attributes before coding explanations
EDIT: I just noticed that I can use the disabled
boolean attribute here, so all I need is validation to disable the boolean attribute so they can press the button.