Hi all,
Could anyone provide java script to move the text entry box to the left (and in-line) with my response options in a two choice multiple choice question

Thanks in advance!
Hi all,
Could anyone provide java script to move the text entry box to the left (and in-line) with my response options in a two choice multiple choice question

Thanks in advance!
Best answer by Deepak
Hello
Try below code:
1Qualtrics.SurveyEngine.addOnReady(function()2{3 /*Place your JavaScript here to run when the page is fully displayed*/4var QID = this.questionId;5 jQuery("#"+this.questionId+" .InputText").each(function(){6 var QIDOtherLabel = jQuery("#" + QID).find(this).siblings().attr("id");7 jQuery("[id='" +QIDOtherLabel+"']").find('span').before(jQuery("#" + QID).find(this));8 jQuery("[id='" +QIDOtherLabel+"']").css("padding-top","30px");9 jQuery("[id='" +QIDOtherLabel+"']").css("padding-bottom","30px");1011 });12 jQuery("#" + QID).find(".TextEntryBox").css("float","unset");13});Hope it helps!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.