Skip Navigation Website Accessibility
 


D'Addario 9V Power Adaptor

available at

Low in-store inventory, may be subject to change.

Ensure consistent, battery-free performance with the D’Addario AC-DC 9V Adaptor. The adaptor converts AC wall power to 9-volt DC for powering most instrument pedals and other 9-volt battery devices. The tip-negative, sleeve-positive power supply can deliver 800mA to fuel even your most power-hungry devices.

// === GLOBAL NAV BEHAVIOR FOR MARICH MUSIC === // --- DROPDOWN ON HOVER (DESKTOP ONLY) --- document.addEventListener('DOMContentLoaded', function () { const dropdowns = document.querySelectorAll('.dropdown'); dropdowns.forEach(drop => { drop.addEventListener('mouseenter', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'block'; }); drop.addEventListener('mouseleave', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'none'; }); }); }); // --- TOGGLE CUSTOM NAV ON MOBILE --- function toggleMobileNav() { const nav = document.querySelector('.menubg'); if (!nav) return; const isVisible = window.getComputedStyle(nav).display !== 'none'; nav.style.display = isVisible ? 'none' : 'flex'; }