- MusicHub - https://musichub.greensparkstudio.com/ -

Hey Jude – Lennon/McCartney

       D                 A

Hey Jude, don’t make it bad

           A7                D

Take a sad song and make it better

   G                           D

Remember to let her into your heart

              A        A7      D / / / D—

Then you can start to make it better

       D            A

Hey Jude, don’t be afraid

          A7                D

You were made to go out and get her

    G                              D

The minute you let her under your skin

            A     A7       D / / / / / / /

Then you begin to make it better

D7                         G         Bm        Em

 And anytime you feel the pain, hey Jude, refrain

        G        A7              D / / / / / / /

Don’t carry the world upon your shoulders

D7                              G        Bm      Em

 For well you know that it’s a fool who plays it cool

    G          A7             D / / /

By making his world a little colder

D  /  /  /   D7 / / / A7 / / / / / / / / / / / A7—

 Nah-nah-nah nah-nah— nah-nah-nah— nah—

     D                  A

Hey Jude, don’t let me down

          A7                    D

You have found her, now go and get her

  G                            D

Remember to let her into your heart

              A        A7      D / / / / / / /

Then you can start to make it better

D7                        G        Bm      Em

 So let it out and let it in, hey Jude, begin

         G          A7            D / / / / / / /

You’re waiting for someone to perform with

D7                                  G       Bm           Em

 And don’t you know that it’s just you, hey Jude, you’ll do

     G            A7              D / / /

The movement you need is on your shoulder

D  /  /  /   D7 / / / A7 / / / / / / / / / / / A7—

 Nah-nah-nah nah-nah— nah-nah-nah— nah— (yeah—)

     D                   A

Hey Jude, don’t make it bad

        A7                   D

Take a sad song and make it better

  G                             D

Remember to let her under your skin

               A     A7

Then you’ll begin to make it

D   /   /   /  /  /   /  /   /  /   /  /    / / / /

Better better better better better better, oh—

D              C                  G                      D / / / / / / /

Nah— nah-nah— nah-nah-nah— nah—, nah-nah-nah— nah—, hey Jude

D              C                  G                      D / / / / / / /

Nah— nah-nah— nah-nah-nah— nah—, nah-nah-nah— nah—, hey Jude

D              C                  G                      D / / / / / / /

Nah— nah-nah— nah-nah-nah— nah—, nah-nah-nah— nah—, hey Jude

(repeat ad finitum)

Video(s)

Hey Jude - The Beatles

Hey Jude Live at Hyde Park - Video & Music Clips

The BEST way to play HEY JUDE - Andy Guitar

Guitar Lesson - JustinGuitar Songs

How to Play on Guitar - Marty Music

.auto-scroll { position: fixed; left: 20px; top: 60%; transform: translateX(-60%); z-index: 1000; width: 35px; text-align:center; } .auto-scroll button { font-size: 14px; padding:0px; margin-bottom:5px; border: none; background-color: #992600; border-radius: 50px; cursor: pointer; box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; transition: all 0.3s ease; width: 30px; height: 30px; } .auto-scroll button.active { background-color: #2196F3; color: #fff; } .auto-scroll button i { font-size: 18px; display: block; } .auto-scroll button i.fa-pause-circle { font-size: 18px; }
var scrollInterval; var currentSpeed = 1; function startScroll(speed) { var scrollSpeed = 1; if (speed === 2) { scrollSpeed = 2; } else if (speed === 3) { scrollSpeed = 3; } currentSpeed = speed; document.querySelectorAll(".auto-scroll button").forEach(function(btn) { btn.classList.remove("active"); }); document.getElementById("speed-" + speed + "x").classList.add("active"); scrollInterval = setInterval(function() { window.scrollBy(0, scrollSpeed); if ((window.innerHeight + window.pageYOffset) >= document.body.offsetHeight) { stopScroll(); resetScroll(); } }, 50); } function stopScroll() { clearInterval(scrollInterval); } function resetScroll() { document.getElementById("start-stop").innerHTML = ''; document.querySelectorAll(".auto-scroll button:not(#start-stop)").forEach(function(btn) { btn.setAttribute("disabled", true); btn.classList.remove("active"); }); } document.getElementById("start-stop").addEventListener("click", function() { if (this.innerHTML === '') { startScroll(1); this.innerHTML = ''; document.querySelectorAll(".auto-scroll button:not(#start-stop)").forEach(function(btn) { btn.removeAttribute("disabled"); }); } else { stopScroll(); resetScroll(); } }); document.getElementById("speed-1x").addEventListener("click", function() { if (currentSpeed !== 1) { stopScroll(); startScroll(1); } }); document.getElementById("speed-2x").addEventListener("click", function() { if (currentSpeed !== 2) { stopScroll(); startScroll(2); } }); document.getElementById("speed-3x").addEventListener("click", function() { if (currentSpeed !== 3) { stopScroll(); startScroll(3); } });