Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.Form = (function() {
- function Form(options) {
- this.options = options
- $('#form1 #cj_connect').click(function() {
- window.open(options.ssoUrl + '/' + options.ssoKey + '/', 'sharer', 'toolbar=no, width=657, height=700');
- })
- }
- Form.prototype.setUser = function(attr){
- if(attr){
- $('#uid').val(attr.uid)
- $('#nickname').val(attr.nickname)
- $('#gender').val(attr.gender)
- $('#email').val(attr.email)
- $('#birthdate').val(attr.birthdate)
- }
- }
- Form.prototype.send = function () {
- form = $('#concurso-avioes #form1')
- $.ajax({
- dataType: 'jsonp',
- type: 'POST',
- url: form.attr('action'),
- data: form.serialize(),
- success: function (data) {
- console.log(data);
- },
- error: function (jhxErr) {
- alert('Não foi possível enviar sua redação. Tente novamente!')
- }
- })
- }
- return Form;
- })();
Advertisement
Add Comment
Please, Sign In to add comment