Skip to content

Instantly share code, notes, and snippets.

@marketinview
Last active October 23, 2022 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marketinview/03dc80fe52623c8df6ae1f42edaba44e to your computer and use it in GitHub Desktop.
Save marketinview/03dc80fe52623c8df6ae1f42edaba44e to your computer and use it in GitHub Desktop.
Qualtrics: Move Multiple Choice Text Entry Boxes Inside Label. #qualtrics #js #jq #mc #text
Qualtrics.SurveyEngine.addOnload(function() {
jQuery("#"+this.questionId+" .TextEntryBox").each(function() {
var tb = jQuery(this);
tb.css({"float":"none","background-color":"white","width":"100%"});
tb.prev("label").css("display","block").append(" ").append(tb);
});
});
@marketinview
Copy link
Author

marketinview commented Sep 28, 2019

For much more advanced multiple choice text entry handling see:
https://qualtricswiki.tgibbons.com/doku.php?id=mctextentry

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