- Posts: 19
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
<script> $( document ).ready(function() { $(document).keypress(function(e){ if( e.which === 14 && e.ctrlKey ){ $("#ls-button-submit").trigger('click'); } else if( e.which === 2 && e.ctrlKey ){ alert('control + b'); //trigger here the id of a back button } }); }); </script>