- Posts: 4
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#ls-button-submit').prop('disabled',true); setTimeout(function () { $('#ls-button-submit').prop('disabled',false); }, 10000); }); </script>
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#ls-button-submit').hide(); setTimeout(function () { $('#ls-button-submit').show(); }, 10000); }); </script>