Guest User

Untitled

a guest
May 22nd, 2018
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $('#form span').on('click', function(e){
  2. e.preventDefault();
  3. $('#form').submit();
  4. });
  5.  
  6.  
  7. //Clear the form on submit
  8. $('form').on('submit', function(){
  9. $('form input[type="text"], form input[type="password"]').val('');
  10. });
  11.  
  12. #form input[type="submit"]{
  13. pointer-events: none;
  14. }
Add Comment
Please, Sign In to add comment