Hello again! I have a select question (q301) in a loop and I'd like to hide a row in the question based on what loop they are in. I found the code to remove the radio button but I'm hoping there's a way to just hide the whole option for that question.
I've played around with style.display but not sure if I'm calling the question up right, doesn't seem to work.
if ([% LoopValue() %] == 13)
{
document.getElementById("q301_1_graphical").visibility = 'hidden';
document.getElementById("q301_1_graphical").disabled = 'true';
document.getElementById("q301_1_graphical").className = 'HideElement';
document.getElementById("q301_1").style.display = 'none';
}
Any help would be appreciated. Thanks!