class Index { constructor() {} Init() {this.#EventListener()} #EventListener() { const about = document.getElementById('index-about') const readBlogs = document.getElementsByClassName('index-readblogs') const websites = { helpinghands: document.getElementById('helpinghands'), goodhandhauling: document.getElementById('goodhandhauling') } for (let i = 0; i < readBlogs.length; i++) readBlogs[i].addEventListener('click', () => window.location.href = '/blog') about.addEventListener('click', () => window.location.href = '/about') websites.helpinghands.addEventListener('click', () => window.location.href = 'https://helpinghandsadultcare.org/') websites.goodhandhauling.addEventListener('click', () => window.location.href = 'https://goodhandhauling.com/') } } new Index().Init()