connect.js 746B

12345678910111213141516171819202122232425262728
  1. //#########################################################
  2. // Part of project php-IRC-js
  3. //
  4. // xhr_write.php - connect to server
  5. //
  6. // Author: Mario Chorvath - Bedna
  7. // Start 2016
  8. //
  9. // Licence GNU General Public License
  10. // Version 2
  11. // http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
  12. //#########################################################
  13. // Connect to server
  14. function connect () {
  15. // Create new XHR
  16. var xhr = new XMLHttpRequest ();
  17. // If "connect.php" send data back
  18. xhr.onreadystatechange = function() {
  19. if (xhr.readyState == 4 && xhr.status == 200) {
  20. document.getElementById("status").innerHTML += "@@@" + xhr.responseText + "</b><br>";
  21. }
  22. };
  23. xhr.open ("GET","connect.php", true);
  24. xhr.send ();
  25. }