We created a questionnaire that contains quite some slider scale questions. To prevent answer biases, most of these questions have added javescript to prevent the handle from being shown until after participants click the line. This works well and the survey indicates it is compatible on mobile devices. However, now that it's online we notice that these questions do not show the handle after participants tap the line (equivalent of clicking) on mobile devices. So it seems that the response is registered, but participants get no feedback and this is very confusing. Do you know a solution for this, to make the handle appear after the first tap on the bar on a mobile device? The added javascript is based on a previous answer from the community and looks as follows:
!

Or in text (for easy copying) :
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
var q = jQuery("#"+this.questionId);
q.find(".handle").css('visibility', 'hidden');
q.find(".track").on("click", function() {
jQuery(this).find(".handle").css('visibility', 'visible');
});
});
Thank you in advance for your help!