Right now I have multiple choice question with a text area below it
I would like to append the text inside
I would like to use jquery to append text between the
Right now I have multiple choice question with a text area below it
I would like to append the text inside

Best answer by jrc3
Thanks to NTTdocomo post here Form text boxes elements — Qualtrics Community
I was able to achieve my goal with the following:
Qualtrics.SurveyEngine.addOnload(function()
{
/*Place your JavaScript here to run when the page loads*/
jQuery("#"+this.questionId+" input[type='radio']:first").after("some text here");
jQuery("#"+this.questionId+" input[type='radio']:eq(1)").after("some text here");
jQuery("#"+this.questionId+" input[type='radio']:eq(2)").after("some text here");
jQuery("#"+this.questionId+" input[type='radio']:eq(3)").after("some text here");
jQuery("#"+this.questionId+" input[type='radio']:last").after("some text here");
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.