Hi,
sorry, what do you want to achieve?
A radio list with multiple "others"?
Why? If you can only select one option?
Or do you talk about a multiple question?
You can use a question of type "multiple with comments" and remove the comment boxes from the "normal" items.
Code:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var thisQuestion = $('#question{QID}');
// Remove some text inputs
$('.checkbox-text-item:eq(0) .comment-item', thisQuestion).remove();
$('.checkbox-text-item:eq(1) .comment-item', thisQuestion).remove();
$('.checkbox-text-item:eq(2) .comment-item', thisQuestion).remove();
$('.checkbox-text-item:eq(3) .comment-item', thisQuestion).remove();
});
</script>
Or would you like to have only one of the fixed options but one or more "Others"?
This you may do by validation.
So, please, explain.
Joffm