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

Sweet Caroline – Neil Diamond

[Intro]

E7 E7  E E  E7 E7  E E7 A
 
A

[Verse 1]

A              D

Where it began, I can’t begin to knowin’

A                             E

 But then I know it’s growin’ strong

A                  D

 Was in the spring, and spring became a summer

A                                E    E7

 Who’d have believed you’d come along?

 

[Pre-Chorus]

A     F#m

Hands,   touching hands

E             D                       E  E D E

 Reaching out,  touching me, touching you

 

[Chorus]

A         D   D A D                           E    E D E

Sweet Caroline,    good times never seemed so good

A        D     D A D                      E

I’d be inclined,    to believe they never would

D   C#m Bm

But now I

 

[Verse 2]

A                 D

Look at the night, and it don’t seem so lonely

A                        E

 We fill it up with only two

A                D

 And when I hurt, hurting runs off my shoulder

A                            E   E7

 How can I hurt when holding you?

 

[Pre-Chorus]

A    F#m

Warm,   touching warm

E             D                       E  E D E

 Reaching out,  touching me, touching you

 

[Chorus]

A         D   D A D                           E    E D E

Sweet Caroline,    good times never seemed so good

A        D     D A D                      E

I’d be inclined,    to believe they never would

D   C#m Bm

Oh  no  no

 

[Instrumental]

E7 E7  E E  E7 E7  E E7 A
 

[Chorus]

A         D   D A D                           E    E D E

Sweet Caroline,    good times never seemed so good

A         D   D A D                     E

Sweet Caroline,    I believe they never could . . .

 

Video(s)

Live At The Greek Theatre / 2012 - Neil Diamond

Neil Diamond "Sweet Caroline" on The Ed Sullivan Show

Neil Diamond Easy 3 chord Song Tutorial - Andy Guitar

Guitar Lesson - JustinGuitar Songs

Easy Songs on Acoustic Guitar Lesson - 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); } });