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);
});
});
by shaneblake
<input type="checkbox" />
<input type="text" />
<input type="radio" />
$(function() {
$("input").each(function() {
alert(this.type);
});
});