new

Simple Christmas Songs The Easiest Tunes to Strum & Sing on Ukulele

Model: BK-SIMPLE-XMAS

$18

50 Christmastime favorites in easy arrangements for ukulele with melody, lyrics and chord diagrams for standard G-C-E-A tuning. Songs include: Blue Christmas • Frosty the Snow Man • Here Comes Santa Claus (Right Down Santa Claus Lane) • Let It Snow! Let It Snow! Let It Snow! • Rudolph the Red-Nosed Reindeer • Santa Claus Is Comin' to Town • Silver Bells • Winter Wonderland • and more.

 9.0"
 12.0"
 112 Pages


Song List:

  • All I Want For Christmas Is My Two Front Teeth
  • All I Want For Christmas Is You
  • Baby, It's Cold Outside
  • Believe
  • Blue Christmas
  • Caroling, Caroling
  • A Child Is Born
  • The Chipmunk Song
  • The Christmas Song (Chestnuts Roasting On An Open Fire)
  • Christmas Time Is Here
  • Christmas Wrapping
  • Do They Know It's Christmas? (Feed The World)
  • Do You Hear What I Hear
  • Feliz Navidad
  • Frosty The Snow Man
  • Grandma Got Run Over By A Reindeer
  • Happy Xmas (War Is Over)
  • Have Yourself A Merry Little Christmas
  • Here Comes Santa Claus (Right Down Santa Claus Lane)
  • A Holly Jolly Christmas
  • I Heard The Bells On Christmas Day
  • I Wonder As I Wander
  • I'll Be Home For Christmas
  • It's Beginning To Look Like Christmas
  • Jingle Bell Rock
  • Last Christmas
  • Let It Snow! Let It Snow! Let It Snow!
  • The Little Drummer Boy
  • A Marshmallow World
  • Mary, Did You Know?
  • Merry Christmas, Baby
  • It's The Most Wonderful Time Of The Year
  • Nuttin' For Christmas
  • Please Come Home For Christmas
  • River
  • Rudolph The Red-Nosed Reindeer
  • Run Rudolph Run
  • Santa Baby
  • Santa Claus Is Comin' To Town
  • Silver And Gold
  • Silver Bells
  • Sleigh Ride
  • Somewhere In My Memory
  • This Christmas
  • We Need A Little Christmas
  • What Are You Doing New Year's Eve?
  • White Christmas
  • Winter Wonderland
  • Wonderful Christmastime
  • You're All I Want For Christmas
See More From This Collection
5.0
Rated 5.0 out of 5 stars
Based on 1 review
Total 5 star reviews: 1 Total 4 star reviews: 0 Total 3 star reviews: 0 Total 2 star reviews: 0 Total 1 star reviews: 0
100%would recommend this product
1 review
  • SM
    Susan M.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    4 days ago
    Love this Book!

    It has all the songs I want to learn for the holidays. Including a few I forgot I wanted to try and play. So happy with my purchase!

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(); })();