Skip to content

Instantly share code, notes, and snippets.

@marketinview
Last active October 23, 2022 14:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marketinview/85c2c5717354827fc9d6b7997b114710 to your computer and use it in GitHub Desktop.
Save marketinview/85c2c5717354827fc9d6b7997b114710 to your computer and use it in GitHub Desktop.
Qualtrics: Reverse Mobile Horizontal MC Choices. #qualtrics #js #jq #mc #horizontal #reverse
Qualtrics.SurveyEngine.addOnload(function() {
var row = jQuery("#"+this.questionId+" tr");
var cells = row.find("td");
if(cells.css("display") == "block") cells.each(function(i) { if(i > 0) row.prepend(jQuery(this)); });
});
@marketinview
Copy link
Author

marketinview commented May 20, 2020

See additional Qualtrics solutions at: https://qualtricswiki.tgibbons.com/doku.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment