JSFiddle - React, Tailwind, and code Playground

by scurrilus

HTML

<div class="teaser">
<a href="#">Test</a>
</div>
<div class="teaser">
<a href="#">Test</a>
</div>
<div class="teaser">
<a href="#">Test</a>
</div>
<div class="teaser">
<a href="#">Test</a>
</div>

JavaScript

$(document).on('click', '.teaser a', function () {
console.log(jQuery(this).attr('href'))
	
    });