Показать сообщение отдельно
  #20 (permalink)  
Старый 23.02.2023, 19:43
Аспирант
Отправить личное сообщение для BorisJe Посмотреть профиль Найти все сообщения от BorisJe
 
Регистрация: 03.12.2021
Сообщений: 66

а что если так?
$(document).ready(function(){
			$('.quote_form').click(function(){
			  // get text field value
			  var userName = $('.myField').val();
			  var emailAddress = 'myemail@server.com';
			  // ajax request and response in function
			  var jqxhr = $.ajax({
				url: 'sendMail.php', 
				type: 'POST',
				data: jQuery('#quote_form').serialize(),
				src: window.location.href,
				success:function(responseAnyNameHere) {
				  $('.responseArea').html(responseAnyNameHere);
				},
				statusCode:{
				  404:function(){
					//$('.error').html("Page not found!");
					alert( "file not found" );
				  }
				}
			  }).done(function() {
			  alert( "success" );
			  }).fail(function() {
			  alert( "error" );
			  }).always(function() {
			  alert( "complete" );
			});
		}}));


Только где то ошибка
Ответить с цитированием