I'm achieving an AJAX Chat, and it's almost done. What I have so far is, a div holding the messages, a textarea and a button, after clicking the send button, data go to another .php file through a post:
function send(pid){
$.post("SetAndGet.php",{
msgChat: $("#messagePM").val(),
idpChat: pid
},function(data){
$("#messagesPM").html(data);
});
}
The problem I'm asking about (and considering so weird) is that in the response, the div messagesPM disappreas and appears again holding the new messages. Why does it disappear and how do I fix that?
messagePMis adivas you suggest, then$("#messagePM").val()won't work. – user113716 Jun 19 '11 at 15:57