Guest User

Untitled

a guest
Apr 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. jQuery(document).on('click', '.openModal', function (event)
  2. {
  3. event.preventDefault();
  4. jQuery('#modal-registro').iziModal('open', this);
  5. });
  6.  
  7. jQuery("#modal-registro").iziModal({
  8. title: '<?=MODAL_TITLE?>',
  9. subtitle: '<?=MODAL_SUBTITLE?>',
  10. width: '<?=MODAL_ANCHO?>',
  11. iframe: true,
  12. iframeHeight: 380,
  13. closeButton: true,
  14. fullscreen: true,
  15. iframeURL: 'registro.php?lang=<?php echo $lang; ?>'
  16. });
  17.  
  18. $.ajax({
  19. url: 'php/procesa-preregistro.php',
  20. dataType: 'text',
  21. cache: false,
  22. contentType: false,
  23. processData: false,
  24. data: formdata,
  25. type: 'post',
  26. success: function(data){
  27. if(data>0) {
  28. $('#procesando').html("").fadeOut('fast');
  29. $.jAlert({'title':'<?=MODAL_THANKS_TITLE?>',
  30. 'content':'<?=MODAL_THANKS_TEXT?>',
  31. 'size':'md',
  32. 'showAnimation':'fadeInUp',
  33. 'hideAnimation':'fadeOutDown',
  34. 'theme':'blue',
  35. onClose: function() {
  36. //location.reload();
  37. $("modal-registro").iziModal('close');
  38. }
  39. });
  40. }
  41. else {
  42. $.jAlert({'title':'Error de Proceso',
  43. 'content':'Hubo un error al procesar su solicitud. Por favor, verifique los datos e intente de nuevo.',
  44. 'size':'sm',
  45. 'showAnimation':'fadeInUp',
  46. 'hideAnimation':'fadeOutDown',
  47. 'theme':'red'
  48. });
  49. return false;
  50. }
  51. }
  52. });
Add Comment
Please, Sign In to add comment