Customer Awarded

Customer Awarded

For Superior Service Levels at Best Buy/Future Shop We are very proud to announce that our customer was recently recognized by Best Buy/Future Shop Canada who gave them their”Best in Class” award for compliance excellence. To achieve this prestigious...
// AODA Fix: Hide mobile nav from accessibility tree var mobileNav = document.querySelector('.mobile_nav'); if (mobileNav) { mobileNav.setAttribute('aria-hidden', 'true'); mobileNav.querySelectorAll('a, button, input, select, textarea').forEach(function(el) { el.setAttribute('tabindex', '-1'); }); } // AODA Fix: Remove all IDs from mobile nav containers document.querySelectorAll('.mobile_nav [id], .et_mobile_nav_menu [id]').forEach(function(el) { el.removeAttribute('id'); }); // AODA Fix: Deduplicate remaining IDs sitewide var idCount = {}; document.querySelectorAll('[id]').forEach(function(el) { idCount[el.id] = (idCount[el.id] || 0) + 1; }); var seen = {}; document.querySelectorAll('[id]').forEach(function(el) { var id = el.id; if (idCount[id] > 1) { seen[id] = (seen[id] || 0) + 1; if (seen[id] > 1) { el.removeAttribute('id'); } } }); // AODA Fix: Add aria-label to desktop search var desktopSearch = document.querySelector('.et-menu-nav input[name="s"]'); if (desktopSearch) { desktopSearch.setAttribute('aria-label', 'Search'); }