Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. $(function(){
  2. $(".ajaxForm").submit(function(e){
  3. e.preventDefault();
  4. var href = $(this).attr("action");
  5. var enviado = $(".enviado")
  6. $.ajax({
  7. type: "POST",
  8. dataType: "json",
  9. url: href,
  10. data: $(this).serialize(),
  11. success: function(response){
  12. if(response.status == "success"){
  13. enviado.addClass("block");
  14. }else{
  15. alert("Error " + response.message);
  16. }
  17. }
  18. });
  19. });
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement