For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
[ | |
{ | |
"code": "AAA", | |
"lat": "-17.3595", | |
"lon": "-145.494", | |
"name": "Anaa Airport", | |
"city": "Anaa", | |
"state": "Tuamotu-Gambier", | |
"country": "French Polynesia", |
Qualtrics.SurveyEngine.addOnload(function() | |
{ | |
/*Place your JavaScript here to run when the page loads*/ | |
var $this = jQuery(this.questionContainer); | |
var question_text = $this.find('.QuestionText').text().split("|end_question|"); | |
var question_stem = question_text[0] | |
// remove the piped-in text from the question stem by replacing it with just the original question_stem | |
$this.find('.QuestionText').text(question_stem); |