jQuery(document).ready(function($){$('#moon-sign-form').on('submit',function(e){e.preventDefault();$('#form-errors').html('');var day=$('select[name="birth_day"]').val();var month=$('select[name="birth_month"]').val();var year=$('select[name="birth_year"]').val();var hour=$('select[name="birth_hour"]').val();var minute=$('select[name="birth_minute"]').val();var errors=[];if(day===''){errors.push('Lütfen gün seçiniz.')}
if(month===''){errors.push('Lütfen ay seçiniz.')}
if(year===''){errors.push('Lütfen yıl seçiniz.')}
if(hour===''){errors.push('Lütfen saat seçiniz.')}
if(minute===''){errors.push('Lütfen dakika seçiniz.')}
if(errors.length>0){var errorHtml='<ul>';errors.forEach(function(error){errorHtml+='<li>'+error+'</li>'});errorHtml+='</ul>';$('#form-errors').html(errorHtml);return}
var formData=$(this).serialize();$.ajax({url:moonSignAjax.ajax_url,type:'POST',data:formData+'&action=calculate_moon_sign',beforeSend:function(){$('#moon-sign-result').html('<p>Yükleniyor...</p>')},success:function(response){$('#moon-sign-result').html(response)},error:function(xhr,status,error){console.log('AJAX error:',status,error);console.log('Response:',xhr.responseText);alert('Bir hata oluştu. Lütfen tekrar deneyin.')}})})})
;