JSFiddle - React, Tailwind, and code Playground

by abhiklpm

HTML

<a class="button secondary url" href="#zero">zero</a>  <a class="button secondary url" href="#three">three</a>  <a class="button secondary url" href="#five">five</a>  <a class="button secondary url" href="#seven">seven</a>  <a class="button secondary url" href="#ten">ten</a>

JavaScript

$(function () {
    $(".button").click(function () {
        window.location.href = "http://www.owlcarousel.owlgraphic.com/demos/urlhashnav.html" + $(this).attr("href");
    });
})