Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.Form = (function() {
- function Form() {}
- Form.prototype.send = function (element) {
- var form = $(element).parent();
- $.ajax({
- type: 'POST',
- url: form.attr('action'),
- data: form.serialize(),
- success: function (data) {
- window.location.href = 'staging.cjogos.com.br/esquadrilha-do-lapis-de-cor/sucesso/'
- },
- error: function (jhxErr) {
- alert('Não foi possível enviar. Tente novamente!')
- }
- })
- };
- return Form
- })();
Advertisement
Add Comment
Please, Sign In to add comment