- Posts: 5
- 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.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
That seems to be limited to the Firefox browser. Still not sure what the root issue is, but I have experienced the same issues when visiting the forum with a Firefox browser.One strange thing:
In none of my browsers a can use the editor of the forum, only this "Quick reply"
Please Log in to join the conversation.
Please Log in to join the conversation.
<script type="text/javascript" data-author="Tony Partner"> $(document).on('ready pjax:scriptcomplete',function(){ // Initially hide sub-group-2 $('.sub-group-2').hide(); // Initially disable the "Next" button $('#ls-button-submit').prop('disabled', true); // Listener on the radios $('.radio-list :radio').on('click', function(e) { console.log($('.radio-list:visible').length+' == '+$(':radio:visible:checked').length); if($('.radio-list:visible').length == $(':radio:visible:checked').length) { $('#ls-button-submit').prop('disabled', false); } }); // Listener on the "Next" button $('#ls-button-submit').on('click', function(e) { if($('.sub-group-1:visible').length > 0) { e.preventDefault(); $('.sub-group-1').hide(); $('.sub-group-2').show(); $('#ls-button-submit').prop('disabled', true); } }); }); </script>
Please Log in to join the conversation.
Please Log in to join the conversation.