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

Leaving On a Jet Plane – John Denver

 /      D                    G

All my bags are packed, I’m ready to go

     D               G

I’m standin’ here outside your door

    D              G              A / / / Asus4 / A

I hate to wake you up to say goodbye—

 /       D                      G

But the dawn is breakin’, it’s early morn

     D                    G

The taxi’s waitin’, he’s blowin’ his horn

   D             G               A / / / Asus4 / A

Already I’m so lonesome I could die—

 /   D          G

So kiss me and smile for me

 D                   G

Tell me that you’ll wait for me

  D                  G            A / / / Asus4 / A

Hold me like you’ll never let me go—

         /   D      G

‘Cause I’m leavin’ on a jet plane

D                  G

 Don’t know when I’ll be back again

D    G               A / / / Asus4 / / / A / / / Asus2 / A

 Oh babe, I hate to go—

 /          D               G

There’s so many times I’ve let you down

    D                G

So many times I’ve played around

   D             G                  A / / / Asus4 / A

I tell you now, they don’t mean a thing—

 /      D                G

Every place I go, I’ll think of you

       D                 G

Every song I sing, I’ll sing for you

     D                   G                  A / / / Asus4 / A

When I come back, I’ll bring your wedding ring—

 /  D            G

So kiss me and smile for me

 D                   G

Tell me that you’ll wait for me

  D                  G            A / / / Asus4 / A

Hold me like you’ll never let me go—

         /   D     G

‘Cause I’m leavin’ on a jet plane

D                  G

 Don’t know when I’ll be back again

D    G               A / / / Asus4 / / / A / / / Asus2 / A

 Oh babe, I hate to go—

D                 G

Now the time has come to leave you

 D              G

One more time, let me kiss you

       D                    G            A / / / Asus4 / A /

Then close your eyes, an’ I’ll be on my way—

  D               G

Dream about the days to come

     D                G

When I won’t have to leave alone

 D              G                A / / / Asus4 / A /

About the times I won’t have to say—

D            G

kiss me and smile for me

D                    G

Tell me that you’ll wait for me

 D                   G           A / / / Asus4 / A

Hold me like you’ll never let me go—

 /           D      G

‘Cause I’m leavin’ on a jet plane

D                  G

 Don’t know when I’ll be back again

D    G              A / / / Asus4 / A

 Oh babe, I hate to go—

  /   D     G

I’m leavin’ on a jet plane

D                  G

 Don’t know when I’ll be back again

D    G               A / / / Asus4 / / / A / / / Asus2 / A / D—

 Oh babe, I hate to go—

Video(s)

"Greatest Hits" Version - John Denver

Medley: (from The Wildlife Concert) - John Denver

Strum Guitar Cover Lesson with Chords/Lyrics - MunsonMusicLive

Guitar Lesson + Tutorial - Marty Music

Easy Finger Styles Guitar Tutorial - JustinGuitar Songs

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