- Posts: 1
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).ready(function() { $('input').on('keydown keypress', function(e) { if(e.keyCode === 13) { return false; } }); });
$(document).ready(function() { $('input').on('keydown keypress', function(e) { if(e.keyCode === 13) { e.preventDefault(); $('#movenextbtn').click(); } }); });
DenisChenu wrote: Or just remove the line 80 to 84
Bigred wrote: The script above that has return false should work for you.