Как отключить скрипт js?

У меня есть скрипт на аккордеон, я хочу сделать так, что бы он работал только на мобильных девайсах, а на десктопе был отключен.

  let footer = document.querySelectorAll('.footer__title');

for (i = 0; i < footer.length; i++) {
  footer[i].onclick = function () {
    this.classList.toggle("active");
    let box = this.nextElementSibling;
    if(box.style.maxHeight) {
      box.style.maxHeight = null;
    }else {
      box.style.maxHeight = box.scrollHeight + 'px';
    }
   for (j = 0; j < footer.length; j++) {
    if(footer[j] !== this) {
      footer[j].classList.remove('active');
      footer[j].nextElementSibling.style.maxHeight = null;
    }
   }
  }
}

Ответы (0 шт):