jus2: Ajax Chat

Beitrag lesen

Entschuldigt bitte, hier nochmal den Code richtig formatiert:

  
function chatwrite() {  
if(document.getElementById("chatwriteinput").value.substr(document.getElementById("chatwriteinput").value.length - 1, 1) == "\n") {  
  if (window.XMLHttpRequest) {  
    // code for IE7+, Firefox, Chrome, Opera, Safari  
    http_chatinsert=new XMLHttpRequest();  
  }  
  else {  
    // code for IE6, IE5  
    http_chatinsert=new ActiveXObject("Microsoft.XMLHTTP");  
  }  
  http_chatinsert.open("GET","../php/post/chat_send.php");  
  http_chatinsert.onreadystatechange=function() {  
    if (http_chatinsert.readyState==4 && http_chatinsert.status==200) {  
      document.getElementById("chatwriteinput").value = http_chatinsert.responseText;  
    }  
  }  
  http_chatinsert.send();  
}  
}