Guest User

vakarm.js

a guest
May 7th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function modifierText(texte)
  2. {
  3. document.getElementById("text").innerHTML = texte;
  4. }
  5.  
  6. function tester(choix)
  7. {
  8. var choix = document.querySelector('input[name = "choix"]:checked').value;
  9.  
  10. if(choix=="choix1")
  11. {
  12. modifierText("bravo.gif");
  13. }
  14. else{
  15. modifierText("Mauvaise réponse");
  16. }
  17. return false;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment