Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1.  
  2. $.ajax({
  3. type: "POST",
  4. dataType: "json",
  5. url: cascading,
  6. data: {
  7. email: '<?php echo $pg_force_mail; ?>',
  8. pseudo: '<?php echo pg_get('pseudo'); ?>',
  9. password: '<?php echo pg_get('password'); ?>',
  10. user_sexe: '<?php echo pg_get('user_sexe'); ?>'
  11. },
  12. success: function(data) {
  13. if (data.error) {
  14. $('#pgMdl_error').html('data.errors.join("<br />")').fadeIn();
  15. } else {
  16. if (typeof data.id_supp !== 'undefined') {
  17. $('body').append('<iframe src="<?php echo $PDV->pixelIframeUrlPix(); ?>&f=' + data.id_supp + '" width="1" height="1" framespacing="0" frameborder="no" allowtransparency="true"></iframe>');
  18. }
  19.  
  20. setTimeout(function() {
  21. if (typeof data.url_cb !== 'undefined') {
  22. window.location.href = data.url_cb;
  23. } else {
  24. window.location.href = '<?php echo pg_url_speed(O_PAGE_DE_VENTE, array('pg_pdvre_thm' => $i_idLandingExe)); ?>&url_exe=' + base64_encode(data.url_exe);
  25. }
  26. }, 2000);
  27. }
  28. },
  29. error: function() {
  30. $('#pgMdl_error').html('Une erreur est survenue. Veuillez réessayer ultérieurement.').fadeIn();
  31. }
  32. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement