function posttext() {
$.ajax({
url: '/main/',
type:"GET",
success: function(json) {
p = $("#chatul").append("<li>"+ json.text + "</li>");
},
data:{
text: $('#text').val(),
sender: 1,
thread: 1,
},
});
$('#text').val("")
};
function check() {
$.ajax({
url:'/check/',
type:'GET',
date:{
thread:1
messages: $("#chatul")
},
succes: function(json){
if json.text !="" {
p = $("#chatul").append("<li>"+ json.text + "</li>");
}
}
})
};
function posttext() {
$.get(
'/main/',
{
text: $('#text').val(),
sender: 1,
thread: 1,
},
function(json) {
p = $('#chatul').append('<li>' + json.text + '</li>');
}
);
$('#text').val('');
};
function check() {
$.get(
'/check/',
{
thread:1
messages: $("#chatul") // что это, ты хочешь отправить на сервер jQuery выборку???
},
function(json) {
// if json.text !="" { где скобки??? может:
if (json.text != '') {
p = $('#chatul').append('<li>' + json.text + '</li>');
}
}
);
};
function posttext() {
...
data:{
text: $('#text').val(),
sender: 1,
thread: 1,
}
function check() {
...
date:{
thread:1
messages: $("#chatul")
}