Hi
@Cathaya,
Use the below code to achieve this. Place the script in Qualtrics.SurveyEngine.addOnReady()
jQuery('input:text').hide();
var rid =jQuery("input[type='text']").parent().parent().find("input[type='radio']").attr("id");
jQuery("[type='radio']").change(function()
{
if(jQuery("[id='"+rid+"']").prop("checked") == true)
{
jQuery("[id*='"+rid+"~TEXT']").show();
}
else
{
jQuery("[id='"+rid+"~TEXT']").val('');
jQuery("[id='"+rid+"~TEXT']").hide();
}
});