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.

83.238.171.65/przemyt/

login: tester

pass: tester

(not working good in Firefox and IE, i'll fix that)

Look at chat. When I send message first time everything working. But when I send second time sudenly i'm fowarded to chat.php.

Code (you can also see it at debuging):

$(function() { 
$(document).ajaxError(function() { 
    alert('Sending error!'); 
});   
$('.chater').submit(function(){
    var $this = $(this);
    $.ajax({
        type: "POST",
        url: $this.attr('action'),
        data: $this.serialize(),

        success : function() {
            $('div.chat').load('chat.php');           
        },

        error : function() {
            alert('Conection error!');
        }                       
    });
    return false;
});
});
share|improve this question

1 Answer

Have you tried with : async:false; ?

share|improve this answer

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.