Baritone Ukulele Method (Book 1) - Instructional Songbook

Model: BK-HLMETHOD-B

$10

This comprehensive, easy-to-use beginner's guide by uke master Lil' Rev is designed for anyone just learning to play baritone ukulele. It teaches:

  • Tuning
  • Music reading and tablature
  • Melody playing
  • Chords & scales
  • Strumming
  • Tremolo
  • The history of the instrument
  • And much more!

Students will learn lots of fun songs in various styles.

9 in x 12 in, 48 pages

See More From This Collection
4.9
Rated 4.9 out of 5 stars
Based on 10 reviews
Total 5 star reviews: 9 Total 4 star reviews: 1 Total 3 star reviews: 0 Total 2 star reviews: 0 Total 1 star reviews: 0
100%would recommend this product
Slide 1 selected
10 reviews
  • RP
    Robert P.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    Baritone Ukulele Method Book

    Nice introduction to the baritone uke. I play tenor uke and guitar. The book is helping me learn the baritone.

    I have bought two Kala tenors, very nice straps, (Rastafarian is my favorite), strings, etc., and love them all. Next purchase: capo and more strings. And my daughter and grandson have Kala ukuleles.

    Keep up the good work.

  • KH Profile picture for Kelly H.
    Kelly H.
    Verified Buyer
    I recommend this product
    Rated 4 out of 5 stars
    1 year ago
    Good for scales

    Nice book, but thin. Good beginner lessons. Play Skip to My Lou and Mary had a little lamb right away ;)

  • EC
    Edith C.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    2 days ago
    Baritone Ukulele Beginners Book

    I have to say that Hal Leonard always publishes books that are structured in a way that makes it so easy to learn. You will be happy with this book if you're learning how to play the Baritone Ukulele. Great buy!

  • RQ
    Ralph Q.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    10 months ago
    Helpful.

    👍

  • K
    Keith
    I recommend this product
    Rated 5 out of 5 stars
    1 year ago
    5 Stars

    Best sounding uke I’ve ever played. Love it.

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