<div style='margin: auto; width: 480px; padding-top: 10px'>
<input type='text' id='question' name='question' class='numerologiya_input' placeholder='Введите вопрос'/>
<div class='sendquestion' style='width: 193px; height: 82px; margin: auto; background: url(/images/sprosit.png); cursor: pointer'></div>
</div>
<script>
$('.sendquestion').click(function(){
if( $('input[name=question]').val()=='' )
{
$('#answer').html('Зачем беспокоить шар по пустякам?').fadeIn(1500).fadeOut(1000);
}
else
{
$('#answer').hide();
$.ajax({
url: '/ajax.php',
type: 'POST',
data: {
'question': $('#question').val()
},
success: function(html){
$('#answer').html(html);
$('#answer').fadeIn(1500);
}
});
}
});
</script>