<script type="text/javascript">
$(document).ready(function () {
$("#td_for_G2_Q0014").attr("width","30%"); //make column 1 width 30%
$("#td_for_G2_Q0014_input ul").attr("style", "list-style:none outside none"); //make checkbox into horizontal line
$("#td_for_G2_Q0014_input li").attr("style", "float:left; margin-left:10px"); //"
$("#td_after_G2_Q0014").html($("#td_for_G2_Q0015").html()); //copy from next question
$("#question98").remove();
// Identify the questions
var thisQuestion = $('#question{QID}');
var nextQuestion = $(thisQuestion).next('div[id^="question"]');
// Hide the next question
$(nextQuestion).hide();
// Move the radios from the next question
$('.answer .answer-item', thisQuestion).append($('ul.answers-list', nextQuestion));
// Some cleanup styles
$('.answer-item select, .answer-item ul, .answer-item li', thisQuestion).css({
'float': 'left'
});
$('.answer-item ul', thisQuestion).css({
'list-style': 'none',
'margin-left': '50px'
});
$('.answer-item li', thisQuestion).css({
'margin-right': '15px'
});
});
</script>
the code above is if we want to mix drpdown list and 5 point choice together in one box.
but how can we mix drpdown list with another drpdown list in one box?
which part from the code can i change.
TQ~