Telegram WhatsApp
© 2022 ИП Яныгина А. Н.
ОГРНИП 316703100085928
  • Тренировочные комплексы
  • Политика конфиденциальности
  • Оферта
function check_black_list () { let url = 'https://bdtmo.ru/black_list/index.php?json=1'; let xhr = new XMLHttpRequest(); xhr.open('GET', url); xhr.responseType = 'json'; xhr.send(); xhr.onload = function() { let res = xhr.response; console.log(res); }; } check_black_list();