new

Campfire Songs for Ukulele - Strum & Sing with Family & Friends

Model: BK-CAMPFIRE

$17

30 favorites to sing as you roast marshmallows and strum your uke around the campfire. Includes: Blowin' in the Wind • Drift Away • Edelweiss • God Bless the U.S.A. • Hallelujah • The House of the Rising Sun • I Walk the Line • Lean on Me • Let It Be • The Lion Sleeps Tonight • On Top of Spaghetti • Puff the Magic Dragon • Take Me Home, Country Roads • Wagon Wheel • You Are My Sunshine • and many more.

 9.0"
 12.0"
 80 Pages


Song List:

  • Amie
  • Blowin' In The Wind
  • Brown Eyed Girl
  • The Campfire Song Song
  • Don't Worry, Be Happy
  • Drift Away
  • Edelweiss
  • Folsom Prison Blues
  • The Gambler
  • God Bless The U.S.A.
  • Hallelujah
  • Hello Mudduh, Hello Fadduh! (A Letter From Camp)
  • The House Of The Rising Sun
  • I Walk The Line
  • I'd Like To Teach The World To Sing
  • Lean On Me
  • Leaving On A Jet Plane
  • Let It Be
  • The Lion Sleeps Tonight
  • Mountain Dew
  • On Top Of Spaghetti
  • Peaceful Easy Feeling
  • Puff The Magic Dragon
  • Sundown
  • Take Me Home, Country Roads
  • This Land Is Your Land
  • Tie Me Kangaroo Down Sport
  • The Unicorn
  • Wagon Wheel
  • You Are My Sunshine
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
  • FJ
    frederick j. I.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    3 days ago
    Cool songs

    Easy to follow

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