wtkd

Untitled

Aug 28th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.Form = (function() {
  2.  
  3.   function Form() {}
  4.  
  5.   Form.prototype.send = function (element) {
  6.     var form = $(element).parent();
  7.     $.ajax({
  8.       type: 'POST',
  9.       url: form.attr('action'),
  10.       data: form.serialize(),
  11.       success: function (data) {
  12.         window.location.href = 'staging.cjogos.com.br/esquadrilha-do-lapis-de-cor/sucesso/'
  13.       },
  14.       error: function (jhxErr) {
  15.         alert('Não foi possível enviar. Tente novamente!')
  16.       }
  17.     })
  18.   };
  19.  
  20.   return Form
  21. })();
Advertisement
Add Comment
Please, Sign In to add comment