JSFiddle - React, Tailwind, and code Playground

by shaneblake

HTML

<input type="checkbox" /> 
<input type="text" /> 
<input type="radio" />

JavaScript

$(function() {

    $("input").each(function() {
        alert(this.type);
    });

});