Skip Navigation Website Accessibility
 


The Easy Ukulele Chord Solo Songbook

available at

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

Beginning ukulele players can start playing their favorite pop songs with this collection featuring standard notation and tab. 20 songs, including: Africa • Don't Stop Believin' • Every Breath You Take • Help! • I Can See Clearly Now • My Girl • The Sound of Silence • Sweet Caroline • Wouldn't It Be Nice • Y.M.C.A. • and more. Includes access to audio files online of recorded demos of each song for download or streaming.

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