How can I validate a user's input in a quiz scenario?
Imagine a quiz where users have to guess the origin of a food item based on an image displayed. If the first picture is from Turkey, followed by Greece, India, and Mongolia, how can I verify if the user's input matches the correct answer?
I am implementing a text input field for this feature instead of using a JavaScript modal.
Below is the code snippet for the input box:
<input class="end" id="guess" onclick="guess()"placeholder="Make a Guess!" style="border-radius: 31px; width: 20%; height: 62px; line-height: 1.2; color: mediumslateblue; padding: 0 35px; font-size: 16px; border-style: 7px solid yellow; visibility: hidden;">