I'm making a simple website for little kids with mathproblems,
the page contains a number of questions that the kids need to solve. They can press on 1 button that checks if the value that they inputted, equal is to the solution. JAVASCRIPT is obligated
I have this in HTML:
Question 1: how much is 8 x 4?
<br><input type="text"> <br>
<button onclick="question1()">Check if your answer is correct?</button>
my function already has this, but i can't seem to make up my mind with the syntax that looks correct:
function question1() {
if (value == 32) {
window.alert("correct!");
} else {
window.alert("try again);
}
}
but my syntax looks correct?
You have to give an input box an unique ID. Then, you can obtain its value like this:
Full code: http://jsfiddle.net/7uwNn/
Good luck with your project!
window.alert("try again);
needs to bewindow.alert("try again");
You forgot to place a quoteTook me a minute to realise you had simply not completed your quotes on the window alert "try again"