Guest User

Untitled

a guest
Aug 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. setInterval(aktualizace,200);
  2.    
  3.    
  4.     function aktualizace(){
  5.    
  6.     if (window.XMLHttpRequest)
  7.       {// code for IE7+, Firefox, Chrome, Opera, Safari
  8.       xmlhttp=new XMLHttpRequest();
  9.       }
  10.     else
  11.       {// code for IE6, IE5
  12.       xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  13.       }
  14.     xmlhttp.onreadystatechange=function()
  15.       {
  16.       if (xmlhttp.readyState==4 && xmlhttp.status==200)
  17.         {
  18.         document.getElementById("chat").innerHTML=xmlhttp.responseText;
  19.         }
  20.       }
Add Comment
Please, Sign In to add comment