Nja jag kan inte hitta något fel men troligen så är det någon siffra du glömt aTT byta ut så att det t.ex. finns två stycken form11.. men det är mycket svårt att hitta..
Det här är egentligen inte ett så bra script när man ska ha så här många frågor.. det skulle gå att göra det lite enklare.. menmen.. leta efter sifferfel.. =)
Efter en lite nogrannare koll så hittade jag lite sifferfel.. byt denna kod:
if (result9 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form9.check9.checked = true}
else {document.form9.check9.checked = false}
if (result10 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form10.check10.checked = true}
else {document.form9.check9.checked = false}
if (result11 != 3){ // In form1 the correct answer is the third OPTION VALUE
document.form11.check11.checked = true}
else {document.form11.check11.checked = false}
if (result12 != 4){ // In form2 the correct answer is the second OPTION VALUE
document.form12.check12.checked = true}
else {document.form12.check12.checked = false}
if (result13 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form13.check13.checked = true}
else {document.form3.check3.checked = false}
if (result14 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form14.check14.checked = true}
else {document.form14.check14.checked = false}
mot:
if (result9 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form9.check9.checked = true}
else {document.form9.check9.checked = false}
if (result10 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form10.check10.checked = true}
else {document.form10.check10.checked = false}
if (result11 != 3){ // In form1 the correct answer is the third OPTION VALUE
document.form11.check11.checked = true}
else {document.form11.check11.checked = false}
if (result12 != 4){ // In form2 the correct answer is the second OPTION VALUE
document.form12.check12.checked = true}
else {document.form12.check12.checked = false}
if (result13 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form13.check13.checked = true}
else {document.form13.check13.checked = false}
if (result14 != 2){ // In form3 the correct answer is the second OPTION VALUE
document.form14.check14.checked = true}
else {document.form14.check14.checked = false}
Så tror jag att det ska funka.. fast det kan ju finnas fler sifferfel som jag missat :(