Jump to content
  • 0

Ajax и привязанная функция


Zverushka
 Share

Question

Вот есть такая вот хрень. И динамически подругажамая через ajax форма. На эту форму валидатор не распространяется. Как сделать так, чтобы распространялся?

$("form").each(function () {		$this = $(this);		var validator = $(this).validate({			errorClass: 'error',			rules: {				phone: {					required: true				},				name: {					required: true				},				email: {					required: true,					email: true				}			},			errorPlacement: function (error, element) {				// Показываем всплывающую подсказку на ошибке				// таймаут для старой версии				setTimeout(function () {					if (!$(element).hasClass("valid")) {						msgError(error, element);					} else {						setTimeout(function () {							$(element).qtip('destroy');						}, 1);					}				}, 1);			},			success: function (error, element) {				// Убираем подсказку				// Для последней версии плагина				// setTimeout(function() {				// 	if ($(element).hasClass("valid")) {				// 		$(element).qtip('destroy');				// 	}				// }, 1);			},			submitHandler: function (form) {				var data = $(form).serialize();				var action = $(form).attr("action");				var answer = $.post(action, data).done(function (msg) {					// если удачно					$.fancybox.close();					$("#thank-you").empty().append(msg);					$.fancybox({						href: "#thank-you",						padding: 0					});					// Yandex METRIKA - поместите код яндекс метрики с достижением цели здесь.					//					// yaCounterXXXXXXXX - замените XXX на номер метрики					//					var fType = $(form).find("[name='type']").val();					if (fType == "order") {						yaCounter22982089.reachGoal('ORDER');					} else if (fType == "call") {						yaCounter22982089.reachGoal('CALL');					}					// setTimeout(function(){					// 	$.fancybox.close();					// }, 5000);				}).fail(function () {					// не удалось осуществить запрос					alert("Произошла ошибка при отправке данных на сервер.");				});				return false;			}		});	});
Edited by Zverushka
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

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