JSFiddle - React, Tailwind, and code Playground

by ipr101

HTML

<div id="test">
    <a href="http://google.de">google</a>
</div>

CSS

#test { cursor:pointer; padding:10px; width:200px; height:50px; background-color:#ccc; }

JavaScript

$(document).ready(function()
{
    $('#test').click(function() {
        alert('test');
    });
    
    $('#test').click(function() {
        alert('test');
    });
});