jQuery(document).ready(function($) { $("#contact").submit(function() { var str = $(this).serialize(); var delay = 3000; $.ajax({ type: "POST", url: "http://ip_адрес_Asterisk/callback/callback.php", data: str, success: function(msg) { if(msg == 'OK') { result = '
Уже звоним :)
'; } else { result = msg; } $('#note').html(result); } }); return false; }); });