function sendSMS() {
$(".sms-result").html( "Отправляем SMS..." );
$.post("/sms.php", {
phone: $("#sms_phone").val(),
text: $("#sms_text").html()
},
function(data){
$(".sms-result").html( data['description'] );
}
);
return false;
}
// ответ
Array
(
[code] => 100
[description] => Сообщение принято.
)