JSFiddle - React, Tailwind, and code Playground

by Ian Roberts

HTML

<a href="#goto">hello</a>
<a href="www.fullURL.com/#goto">hello</a>
<p>inspect the links to see the added class</p>

JavaScript

// add class to inpage urls w/ # hashtags

$('a[href*="#"]').each(function() {
    $('a').addClass('smoothScroll');
});