Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.47 KB | None | 0 0
  1.  
  2.     <script type="text/javascript">
  3.         $('#l-email').keypress(function (e) {
  4.             if (e.which == 13) {
  5.                 $('form.login-form').submit();
  6.                 return false;    //<---- Add this line
  7.             }
  8.         });
  9.         $('#l-password').keypress(function (e) {
  10.             if (e.which == 13) {
  11.                 $('form.login-form').submit();
  12.                 return false;    //<---- Add this line
  13.             }
  14.         });
  15.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement