Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Ao terminar de carregar o documento
- //
- $ ( function ( )
- {
- // Validando formulário
- //
- $ ( '#loginAmigo' ) . validate
- ( {
- rules:
- {
- login:
- {
- required: true
- },
- senha:
- {
- required: true
- }
- },
- messages:
- {
- login:
- {
- required: ''
- },
- senha:
- {
- required: ''
- }
- },
- // Quando tudo válido
- //
- submitHandler: function ( )
- {
- alert('ok');
- }
- } );
- } );
Advertisement
Add Comment
Please, Sign In to add comment