JSFiddle - React, Tailwind, and code Playground

by dhoerster

HTML

<label id="phoneLbl" for="phone">Phone</label><input id="phone" type="text" />

JavaScript

$(document).ready(function(){
    $("#phoneLbl").click(function(e){
        alert('here');
    });
});