Skip Navigation Website Accessibility
 


Chart Hits of 2019-2020 for Easy Guitar

available at

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

This songbook features 13 of today's hottest hits arranged for easy guitar with lyrics so even beginning guitarists can play them. Songs include: Circles (Post Malone) • Dance Monkey (Tones and I) • everything I wanted (Billie Eilish) • Girl (Maren Morris) • Into the Unknown (Panic! At the Disco) • Juice (Lizzo) • Lose You to Love Me (Selena Gomez) • Lover (Taylor Swift) • 10,000 Hours (Dan + Shay feat. Justin Bieber) • and more.

// === 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'; }