Hello everyone,
I'm using ranking questions where I ask participants to rank 5-6 objects.
Currently, I'm using the drag & drop version, but don't mind changing to a different one if it would make things easier.
I'm trying to do 2 things:
- Record the initial order for the participant (I'm using randomization), to see how much he changed the order.
- Track and record the worker movements of items, that is, if he moved the item that was presented first (even better to have its title) to the third place, I'd like to record that and examine afterward in my analysis.
I'd assume that the tracking would be done somehow with the JS script, looking in the forum I've found this bit of code:
Qualtrics.SurveyEngine.addOnload(function()
{
jQuery('#SOMEID').click(function(event) {
Qualtrics.SurveyEngine.setEmbeddedData("click", "1");
});
});
But that one would work for clicking a link, what could I use for tracking the order?