JSFiddle - React, Tailwind, and code Playground
by skram
HTML
<script type="text/javascript">
$(document).ready (function () {
var headText = '';
$('.headerID').hover(function() {
headText = $(this).html();
$(this).html('<a href="#">ASD</a> | <a href="#">DESC</a>');
}, function() {
$(this).html(headText);
});
});
</script>
<div class='headerID'>ID</div>
<div class='headerOwner'>Owner</div>
<div class='headerQueue'>Queue</div>
<div class='headerSubject'>Subject</div>
<div class='headerType'>Type</div>
<div class='headerProduct'>Product</div>
<div class='headerHost'>Host</div>
<div class='headerEmail'>Email</div>