Hi
@Nadaly ,
Add following code in js
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
jQuery(".c7 ").hide()
jQuery(".c8,last ").hide()
});
Hope it helps 😀
Hi
@SaurabhPujare_Ugam
I have the same question as
@Nadaly.
The JS code your gave is not working for me. Is there anything I missed or I should change?
Thank you in advance for your answer.
Hello
@Nadaly ,
Paste the below code in the js(onReady) of the radio button type Rank Order question
jQuery("#"+this.questionId+" tr.Answers th:eq(3), tr.Answers th:eq(4)").hide();
jQuery("#"+this.questionId+" .ChoiceStructure tbody tr").find('td:eq(3)').hide();
jQuery("#"+this.questionId+" .ChoiceStructure tbody tr").find('td:eq(4)').hide();
How would I hide ONLY specific buttons on a particular row/column? The accepted answer is working for me, but I'm trying to adjust it to only hide certain buttons, not entire columns.
Thanks.