Hi,
I'm trying to hide the first radio button but not the describing text. The second radio button is for a Prefer not to Answer. See below:
the following JS is not working:
jQuery('input[type=radio]:first').hide();
noalika - I did this with CSS. See below code.
label#QID1-1-label.SingleAnswer {
display:none;
}
Just change the question id.
Mishraji - I've tried several times and I can't get it to work. My CSS knowledge is limited. I'm assuming I'm inputting the incorrect question id or label. Here is all the information:
QID44
question label = Pos behaviors contribute to SVP at Dart
so would the CSS be the following?
label#QID44-1-Pos behaviors contribute to SVP at Dart.SingleAnswer{
display:none;
}
Mishraji
I also tried
label#QID44-1-label.SingleAnswer {
display:none;
}
noalika -It seems you have the incorrect question ID. To find the question ID, follow the below steps:
- While on the survey builder page, press Ctrl + Shift together and then click on Tools.
- Here you would see a new option added - 'Support Mode'. Select this option.
- Move down to the 'Pos behaviors contribute to SVP at Dart' question. The QID and option ID will be displayed. In the below screenshot, QID1 is the question ID and 1 is the option ID, which makes it QID1-1.
Mishraji
YES, IT WORKED!!! THANK YOU!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.