I'm a newbie to Qualtrics.
Please assume the following situation
In Qid1, subject report some value x
In Qid2, subject reports through slider which has a value [0,x]
Could someone help me out how to code this up?
This is what I tried. (I just want to customize the min and max of the slider through J query but still, it is difficult for me)
Qualtrics.SurveyEngine.addOnload(function()
{
jQuery("#QID58\~1\~true-result").prop('min',1);
jQuery("#QID58\~1\~true-result").prop('max',10);
});
Qualtrics.SurveyEngine.addOnReady(function()
{
jQuery("#QID58\~1\~true-result").prop('min',1);
jQuery("#QID58\~1\~true-result").prop('max',10);
});
Could someone give me a guidance to get through?