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>
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>