<script type="text/javascript">
$(function(){
if (CKEDITOR.instances['content']) {
CKEDITOR.remove(CKEDITOR.instances['content']);
}
$('#content' ).ckeditor();
if (CKEDITOR.instances['exam_explains']) {
CKEDITOR.remove(CKEDITOR.instances['exam_explains']);
}
$('#exam_explains' ).ckeditor();
var jtypes=${question.types==null?"":question.types};;
if(jtypes<5){
$("#selectAnswer").show();
};
var a =${question.selectanswer==null?"[]":question.selectanswer};
for(var i=0;i<a.length;i++ ){
$("#select").append('<ul><input type="text" value="'+a[i]+'" name="answers" style="width:300px"></ul>');
}
});
function back(){
history.go(-1);
}
</script>