How to add phone number on mobile in Qualtrics code example
Example 1: How to add phone number on mobile in Qualtrics
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#"+this.questionId+" .InputText").attr('type', 'tel');
});
Example 2: How to add phone number on mobile in Qualtrics
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#"+this.questionId+" .InputText").attr('type', 'tel');
});