- Posts: 45
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
$('.question-text table:eq(0) .radio-item', thisQuestion).on('click', function(e) { $('input:radio', this).trigger('click'); $('#ls-button-submit').trigger('click'); });
var v='{Q4_SQ001}'; //the selected mode if(v==1) { $('.question-text table:eq(0) tr:eq(3) td:eq(1)', thisQuestion).html('<i class="fa fa-check-circle-o fa-2x" aria-hidden="true"></i>'); } if(v==2) { $('.question-text table:eq(0) tr:eq(3) td:eq(2)', thisQuestion).html('<i class="fa fa-check-circle-o fa-2x" aria-hidden="true"></i>'); }
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.