I have a multi-choice question with the last option being "Other (please specify)." The text box appears below this text. Is it possible to have the text entry box beside the text instead of below?
Page 1 / 1
Use below code:
jQuery("#"+this.questionId+" .TextEntryBox").each(function() {
var tb = jQuery(this);
tb.css({"float":"none","background-color":"white","width":"50%"});
tb.prev("label").css("display","block").append(" ").append(tb);
});
jQuery("#"+this.questionId+" .TextEntryBox").each(function() {
var tb = jQuery(this);
tb.css({"float":"none","background-color":"white","width":"50%"});
tb.prev("label").css("display","block").append(" ").append(tb);
});
This worked for me - thank you for posting!
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.