Guest User

Untitled

a guest
May 26th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $('form').submit(function (e) {
  2. e.preventDefault();
  3. // Handle Checks
  4. $(this).submit();
  5. });
  6.  
  7. $('form').submit();
  8.  
  9. $('form').unbind('submit'); $('#submit').click();
  10.  
  11. jQuery(document).ready(function($) {
  12. $('#comment').keydown(function(event) {
  13. if (event.keyCode == 13) {//capture ENTER Key
  14. $('form').unbind('submit'); $('#submit').click();
  15. return false;
  16. }
  17. });
  18. });
Add Comment
Please, Sign In to add comment