Disney Hits for Ukulele - Instructional Songbook

Model: BK-DISNEY

$17

Play 23 of your favorite Disney songs on your ukulele. Includes:

The Bare Necessities • Cruella De Vil • Do You Want to Build a Snowman? • He's a Tramp • I See the Light • Kiss the Girl • Lava • Let It Go • Once upon a Dream • So This Is Love (The Cinderella Waltz) • Under the Sea • When She Loved Me • A Whole New World • and more.

9 in x 12 in, 52 pages

See More From This Collection
4.8
Rated 4.8 out of 5 stars
Based on 8 reviews
Total 5 star reviews: 6 Total 4 star reviews: 2 Total 3 star reviews: 0 Total 2 star reviews: 0 Total 1 star reviews: 0
100%would recommend this product
8 reviews
  • GI
    George I.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    3 months ago
    Nice standards

    Exactly what you would expect. Some new some old. Nice combination.

  • LD
    Lisa D.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    6 months ago
    A new found love !

    Wouldn’t be complete without a Disney collection !! Quick delivery !!!

  • RC
    Robert C.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    11 months ago
    Disney

    Good selection and good chords

  • LK
    Linda K.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    Disney Hits for Ukulele

    Good for all ages.

  • JG
    Jeffery G.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    Fun to play along with.

    The songs seemed be accurate and fun to play.

Reviews LoadedReviews Added
''
// Preorder Property Handler (function() { function initPreorderProperty() { // Check if this is a preorder product if (!window.isPreorderProduct) { return; } console.log('✅ Preorder product detected'); // Add property to form submissions function addPreorderToForm() { const addToCartButtons = document.querySelectorAll( '[name="add"], ' + 'button[type="submit"][name="add"], ' + '.product-form__submit, ' + '[data-add-to-cart], ' + 'button.add-to-cart, ' + 'button[name="add"]' ); addToCartButtons.forEach(function(button) { button.addEventListener('click', function(e) { const form = button.closest('form'); if (form && form.action && form.action.includes('/cart/add')) { let preorderInput = form.querySelector('input[name="properties[_preorder]"]'); if (!preorderInput) { preorderInput = document.createElement('input'); preorderInput.type = 'hidden'; preorderInput.name = 'properties[_preorder]'; preorderInput.value = 'true'; form.appendChild(preorderInput); console.log('✅ Added _preorder hidden input'); } } }); }); } // Intercept AJAX cart adds function interceptCartAjax() { const originalFetch = window.fetch; window.fetch = function(...args) { const [url, config] = args; if (url && (url.includes('/cart/add.js') || url.includes('/cart/add'))) { if (config && config.body) { try { // Handle JSON body if (typeof config.body === 'string') { const data = JSON.parse(config.body); if (!data.properties) { data.properties = {}; } if (!data.properties._preorder) { data.properties._preorder = 'true'; console.log('✅ Added _preorder to AJAX request'); } config.body = JSON.stringify(data); } // Handle FormData else if (config.body instanceof FormData) { if (!config.body.has('properties[_preorder]')) { config.body.append('properties[_preorder]', 'true'); console.log('✅ Added _preorder to FormData'); } } } catch (e) { console.error('Error modifying cart request:', e); } } } return originalFetch.apply(this, args); }; } // Initialize when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', function() { addPreorderToForm(); interceptCartAjax(); }); } else { addPreorderToForm(); interceptCartAjax(); } } // Initialize initPreorderProperty(); })();