JSFiddle - React, Tailwind, and code Playground
by seefeld
JavaScript
// Javascript to enable link to tab
var url = document.location.toString();
if (url.match('#')) {
$('#tabs-links a[href=#' + url.split('#')[1] + ']').tab('show');
}
// Change hash for page-reload
$('#tabs-links a').on('shown', function (e) {
window.location.hash = e.target.hash;
});