JSFiddle - React, Tailwind, and code Playground

by joshmoto

HTML

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<h1 class="title">
  Howdy 
  <a href="#"><small>click me</small></a>
</h1>

<a class="btn btn-primary" href="#">Get Me</a>

JavaScript

// custom covers gallery
$('.title A').on( "click", function(e) {
  e.preventDefault();
  $(this).closest('.btn').hide();
});