- Posts: 21
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
var equationValue = $.trim($('div.em_equation').text()) if (equationValue == 1) { ...
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#movenextbtn, #movesubmitbtn').hide(); $('input.radio').bind('click', function(e) { if($('input.radio:checked').length == $('.radio-list').length) { $('#movenextbtn, #movesubmitbtn').show(); } }); }); </script>
$(document).ready(function() { $('#movenextbtn, #movesubmitbtn').hide(); $('input.radio').bind('click', function(e) { if($('input.radio:checked').length == $('.radio-list').length) { $('#movenextbtn, #movesubmitbtn').show(); } }); });
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#movenextbtn, #movesubmitbtn').hide(); if($('input.radio:checked').length == $('.radio-list').length) { $('#movenextbtn, #movesubmitbtn').show(); } $('input.radio').bind('click', function(e) { if($('input.radio:checked').length == $('.radio-list').length) { $('#movenextbtn, #movesubmitbtn').show(); } }); }); </script>