Showing posts with label enter key. Show all posts
Showing posts with label enter key. Show all posts

Thursday, January 30, 2014

How to avoid or lock enter key in form?


Use this simple code to avoid enter key on form-


  <script type="text/javascript">
        $(document).keypress(
                    function (event) {
                        if (event.which == '13') {
                            event.preventDefault();
                            }
                                    }
                            );
 </script>