Advertisement
Guest User

Untitled

a guest
Aug 7th, 2014
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $('#Email').on('input', function () {
  2. var submitButton = $('#emailValidationForm').find(':submit');
  3.  
  4. if ($('#emailValidationForm').validate().check($('#Email'))) {
  5. submitButton.removeAttr('disabled');
  6. } else {
  7. submitButton.attr('disabled', '');
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement