Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function modifierText(texte)
- {
- document.getElementById("text").innerHTML = texte;
- }
- function tester(choix)
- {
- var choix = document.querySelector('input[name = "choix"]:checked').value;
- if(choix=="choix1")
- {
- modifierText("bravo.gif");
- }
- else{
- modifierText("Mauvaise réponse");
- }
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment