Last active
December 16, 2015 04:09
-
-
Save jorgeguberte/5374825 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#id_do_botao_de_enviar').click(function(e){ | |
e.preventDefault(); | |
$.ajax({ | |
method: 'post', | |
url: 'ajax/form/nome_do_form', | |
data: dados_do_form, | |
success: function(data){ | |
if(data.status == 'ok'){ | |
//Mostra mensagem de sucesso | |
}else{ | |
//Mostra mensagem de erro | |
} | |
}, | |
error: function(data){ | |
//Mostra mensagem de erro | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment