Hello all, I would like to create a survey where the responses on particular slider questions are either not recorded or default back to the initial value once the survey is submitted. I am trying the following with JS but this still seems to capture the response.
Any help much appreciated (--a JS newbie). Thanks.
I believe if you do not want the respondent to answer it and want a preselected value, just disable that slider via JS and no one will be able to change it.
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
jQuery('.handle').eq(0).css('pointer-events','none')
});
Additionally, you can have a default value like 0 by default choice option.
I have tried this option out but I am still able to activate the slider and collect response data. My issue is that I would still like participants to be able to activate the slider, just without capturing the data from it.
Hi @Deepak - thanks for the suggestion and for your patience! I tried this too but it still seems to be capturing the slider data. I am including my survey builder suggestions in case there is something that I am doing differently.
Thanks, my issue is that it’s sensitive data that I do not want to collect in the first place. It would be great to still enable the slider interaction but then clear or replace the data with another option on submission.