Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
do you want your div to contain only 1 message? – John Jun 19 '11 at 15:53
no, it holds all the messages, John, I did all that, just want why the div disappears to update the messages liste? – Nadj Jun 19 '11 at 15:56
If messagePM is a div as you suggest, then $("#messagePM").val() won't work. – user113716 Jun 19 '11 at 15:57
see my answer, are you returning a HTML string with a new div for example <div id="messagesPM">NEW ERROR CONTENT</DIV> – John Jun 19 '11 at 15:57

1 Answer

up vote 1 down vote accepted
    function send(pid){
      $.post("SetAndGet.php",{ msgChat: $("#messagePM").text(), idpChat: pid },function(data){ $("#messagesPM").append(data); });
 })

Firstly if $("#messagesPM") is a DIV, .val() will not return the content of the div, you must use .text() to get the text inside of a div.

Secondly using HTML() will replace the div with whatever gets returned, so use append. UNLESS you are returning a DIV html tag with its content set.

share|improve this answer
No problem, have a good day... remember to tick it as solved :P – John Jun 19 '11 at 16:01
just that, I usually use html(), that was the problem, thanks John, you been so fast and helpful, It's solved! – Nadj Jun 19 '11 at 16:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.