Liebes Support Team,
ich benötige Unterstützung, ich komme einfach nicht mehr weiter:
Fragbogenlink: https://www.soscisurvey.de/resistkrebs/?act=5ElCqHilMP3mlMw36OHHhLgI
Ich versuche auf Seite 8 ein Item (F114) so zu programmieren, dass wenn Option A (siehe Syntax) gewählt wird, dass dann eine weitere Frage (F115) eingeblendet wird, anderenfalls soll die Frage ausgeblendet bleiben. Mir wird keine Fehlermeldung angezeigt und trotzdem bleibt die Frage (F115) stets ausgeblendet.
Können Sie mir hier weiterhelfen und sagen, worin der Fehler besteht?
JavaScript Quellcode:
<script type="text/javascript">
<!--
var optionI = document.getElementById("F114_01a");
var optionJ = document.getElementById("F114_02a");
var optionK = document.getElementById("F114_03a");
var optionL = document.getElementById("F114_04a");
var optionM = document.getElementById("F114_05a");
var frage9 = document.getElementById("F115_qst");
function toogle6() {
if ((optionI.checked)) {
frage9.style.display = "none";
} else {
frage9.style.display = "";
}
}
SoSciTools.attachEvent(optionI, "click", toogle6);
SoSciTools.attachEvent(optionJ, "click", toogle6);
SoSciTools.attachEvent(optionK, "click", toogle6);
SoSciTools.attachEvent(optionL, "click", toogle6);
SoSciTools.attachEvent(optionM, "click", toogle6);
toogle6();
function toogle7() {
if ((optionJ.checked) && (optionK.checked) && (optionL.checked) && (optionM.checked)) {
frage9.style.display = "";
} else {
frage9.style.display = "none";
}
}
SoSciTools.attachEvent(optionI, "click", toogle7);
SoSciTools.attachEvent(optionJ, "click", toogle7);
SoSciTools.attachEvent(optionK, "click", toogle7);
SoSciTools.attachEvent(optionL, "click", toogle7);
SoSciTools.attachEvent(optionM, "click", toogle7);
toogle7();
// -->
</script>