For a multi-select multiple choice question I would like to show images instead of responses, the idea in my head being that it will sort of resemble the app icons on a phone.
I have put the images in the choice text but am not able to hide the checkboxes despite trying a number of methods, the following being one of them:
Qualtrics.SurveyEngine.addOnload(function() {
var questionContainer = this.getQuestionContainer();
jquery(thisquestion).find("inputitype=checkbox]").hide();
});
Another big question - right now clicking on the image will check the box but will it do that if box is hidden?
Bonus points - I’d love to outline the images when selected (and remove if clicked again). Right now there’s a blue background on click but it’s not as clean as what I’d like to see.
Thank you for any input!