Max Weylandt.

← Back

Enlarging the HTML edit box in Qualtrics with one click

19 November, 2023

If your survey questions are generated dynamically in a way that piped values can’t handle (say, if you’re doing a conjoint), or if you want to get fancy with styling, you’ll have write your own HTML.

Except when you go to edit the question HTML, qualtrics restricts you to a tiny editor that makes it impossible to maintain an overview of where you are; a nightmare given the nested nature of HTML markup.

So here is a short bit of javascript code that you can make a bookmark, which pumps up the size. It’s crude, but it works.

Code: github|gitlab

 javascript:(function(){var elem = document.querySelector('.inlineEditor.html-editor'); elem.style.height = '1000px'; })();


← Back ↑ Top