main.js 676B

12345678910111213141516171819202122232425262728
  1. //#########################################################
  2. // Part of project php-IRC-js
  3. //
  4. // xhr_write.php - main.js
  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. // Read rsponse and sroll page down by timeout
  14. function main () {
  15. readResponse ();
  16. document.getElementById("bottom").scrollIntoView();
  17. setTimeout (main, 1000);
  18. }
  19. // Scroll page down
  20. function scrollIntoView(eleID) {
  21. var e = document.getElementById(eleID);
  22. if (!!e && e.scrollIntoView) {
  23. e.scrollIntoView();
  24. }
  25. }