I’m in other trouble now.
I needed four forms and they’re conflicting with other answers.
This is the link http://juadri.com.br/cursos/quiz.html
And the code
<!DOCTYPE html>
<html lang="pt-br" id="Pos">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" href="css/styleQuiz.css" type="text/css" />
<link rel="stylesheet" href="css/animate.css" type="text/css" />
</head>
<body>
<div id="mainQuiz">
<div class="contentQuiz">
<div class="boxQuiz">
<div class="numQuiz">1</div>
<div class="boxContentQuiz boxEsq">
Assinale o que uma criança de 4 anos provavelmente NÃO consegue fazer com autonomia e facilidade, apesar de poder haver raras exceções:
</div>
<div class="boxContentQuiz boxDir">
<form id="form01">
<label><input name="radio" type="radio" value="resposta01" id="resposta01">Consegue pular com os dois pés e com um pé só</label>
<label><input name="radio" type="radio" value="resposta02" id="resposta02">Começa a fazer amigos e entender o que é a amizade</label>
<label><input name="radio" type="radio" value="resposta03" id="resposta03">Imita os adultos a sua volta e até os seus colegas</label>
<label><input name="radio" type="radio" value="resposta04" id="resposta04">Escreve e lê convencionalmente</label>
<input type="submit" id="btnsubmit" onClick="fSubmit()" value="" />
</form>
</div>
</div>
</div>
<div class="contentQuiz">
<div class="boxQuiz">
<div class="numQuiz">2</div>
<div class="boxContentQuiz boxEsq">
Assinale o que uma criança de 4 anos provavelmente NÃO consegue fazer com autonomia e facilidade, apesar de poder haver raras exceções:
</div>
<div class="boxContentQuiz boxDir">
<form id="form02">
<label><input name="radio" type="radio" value="resposta05" id="resposta05">Consegue pular com os dois pés e com um pé só</label>
<label><input name="radio" type="radio" value="resposta06" id="resposta06">Começa a fazer amigos e entender o que é a amizade</label>
<label><input name="radio" type="radio" value="resposta07" id="resposta07">Imita os adultos a sua volta e até os seus colegas</label>
<label><input name="radio" type="radio" value="resposta08" id="resposta08">Escreve e lê convencionalmente</label>
<input type="submit" id="btnsubmit" onClick="fSubmit()" value="" />
</form>
</div>
</div>
</div>
</div>
<div id="div-certo">
<div class="divCertoConteudo animated bounceInUp">
RESPOSTA CORRETA <br>
<a href=""><img src="imgs/btProxima.png"></a>
</div>
</div>
<div id="div-errado">
<div class="divErradoConteudo animated bounceInUp">
RESPOSTA INCORRETA<br>
<a href=""><img src="imgs/btProxima.png"></a>
</div>
</div>
<script type="text/javascript">
function fSubmit() {
var form = document.getElementById('form01');
var correctanswer = document.getElementById("resposta02");
form.addEventListener('submit', function(event) {
if (correctanswer.checked) {
document.getElementById("div-certo").style.display = 'block';
document.getElementById("div-errado").style.display = 'none';
} else {
document.getElementById("div-certo").style.display = 'none';
document.getElementById("div-errado").style.display = 'block';
}
event.preventDefault();
});
var form = document.getElementById('form02');
var correctanswer = document.getElementById("resposta07");
form.addEventListener('submit', function(event) {
if (correctanswer.checked) {
document.getElementById("div-certo").style.display = 'block';
document.getElementById("div-errado").style.display = 'none';
} else {
document.getElementById("div-certo").style.display = 'none';
document.getElementById("div-errado").style.display = 'block';
}
event.preventDefault();
});
}
</script>
</body>
</html>
Another thing if you can help me, when I click on the div button "Incorrect answer" I would like to hide that div and when I click on the div button "correct answer" the next form appears. I thought about doing it with anchor but I don’t know if I could do better.
Thanks in advance.
Guilherme, I inserted your code in the snippet, so it is possible not only to view it, but also to test it here on the site. :)
– user28595
Okay, thank you very much, I’m new here, I don’t know all the resources, thank you!
– Guilherme Sanches
worked right! Thank you!!!
– Juliana Souza