Quantcast
Channel: Topics in Category: Can I do this with LimeSurvey? - LimeSurvey forums
Viewing all articles
Browse latest Browse all 17529

Multiple Choice Question Type - Moving the Other subquestion - by: midRange

$
0
0
Disregard my post above. I simply had to modify the JS script to account for the different HTML on the List (Radio) Type page.
Removed .parent() from variables otherRow and replaceRow

<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
// New position of the "Other" row (edit as required)
var newPosition = 8;
var thisQuestion = $('#question{QID}');
var otherRow = $('.answer-item[id$="other"]', thisQuestion);
var replaceRow = $('.answer-item:eq('+(newPosition-1)+')', thisQuestion);

$(replaceRow).before($(otherRow));
});
</script>

Viewing all articles
Browse latest Browse all 17529

Trending Articles