In Qualtrics, I am trying to get the slider value of the response when the next button is clicked using javascript. I have tried many proposed solutions including everything in this question. But none of them worked.
Update: I also tried the following, did not work:
Qualtrics.SurveyEngine.addOnload(function()
{
var q = this.getQuestionInfo();
$('NextButton').onclick =function(event,element)
{
alert("${q://1_QID1/ChoiceNumericEntryValue/1}");
alert(this. questionId+","+q.QuestionID);
var p = "q://"+q.QuestionID+"/ChoiceNumericEntryValue/1";
var v = "${p}";
alert(v);
}
});