Jump to content
  • 0

Обязательное поле в phpmailer для сафари


CreateZone
 Share

Question

1 answer to this question

Recommended Posts

  • 0

нашел плагин еще один он как раз для сафари https://habr.com/post/181782/ но почемуто конфликтует с тем что было написано для скрипта формы 

Прихований текст

function send(form,otziv) {
	jform = $(form);
	window.form = form;
	data = jform.serialize() + '&type=' + form.id;

	console.log(data);
	jQuery.ajax({
		url: '/send_email.php',
		beforeSend: lock_button,
		cache: false,
		async: false,
		success: function (data) {
			console.log(data);
			restore_button();
			if (otziv==1) {
				$('#overlay1').fadeIn(400,
					function () {
						$('#modal_form4')
							.css('display', 'block')
							.animate({
								opacity: 1,
								top: '35%'
							}, 200);
					});
			}
			else {
				$('#overlay1').fadeIn(400,
					function () {
						$('#modal_form3')
							.css('display', 'block')
							.animate({
								opacity: 1,
								top: '35%'
							}, 200);
					});
			};
		},
		type: 'POST',
		data: data
	});
} 

 


 
если это удалить проверка идет, по другому опять не видит... 

Edited by klierik
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy