JSFiddle - React, Tailwind, and code Playground

by Jason

HTML

<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.0/jquery.validate.min.js"></script>
<form method="post" enctype="application/x-www-form-urlencoded" id="formid">
<input type="hidden" name="page" value="1"><b>REQUIRED</b></input>
<input type="hidden" name="request_type_cn" value="110706"><b>REQUIRED</b></input>
<input type="submit" style="display: none !important;" name="next" value="GIS"><b>REQUIRED</b></input>

<div id="tabmenu"><input type="submit" onclick="return false;" class="selected" value="Requested" name="next"><b>REQUIRED</b></input><input type="submit" value="GIS" name="next"><b>REQUIRED</b></input></div>
<div id="tab_menu_body">
  <p> <span class="required" aria-required="true">*</span> Required Field </p>
  <div class="infobox">
    <h3>Requested By</h3>
    <br>
    <table border="0" cellspacing="1" cellpadding="1" summary="alignment">
      <tbody><tr>
        <td><span id="requested" title="Requestor's Last Name">Last Name</span><span class="required" aria-required="true">*</span>:</td>
        <td><input type="text" id="requested" size="50" maxlength="50" name="requestor_last_name" value=""><b>REQUIRED</b></input>
</td>
      </tr>
      <tr>
        <td><span title="Requestor's First Name">First Name</span><span class="required" aria-required="true">*</span>:</td>
        <td><input type="text" size="50" maxlength="50" name="requestor_first_name" value=""><b>REQUIRED</b></input>
</td>
      </tr>
      <tr>
        <td><span title="Example: Forest Fish Biologist, District range con">Title</span>:</td>
        <td><input type="text" size="50" maxlength="50" name="requestor_title" value=""><b>REQUIRED</b></input>
</td>
      </tr>
      <tr>
        <td><span title="Please select your duty station">Unit</span><span class="required" aria-required="true">*</span>:</td>
        <td><select name="requestor_organization_cn">
	<option selected="selected" value=""></option>
	<option value="8310840">PNW Labs</option>
	<option...

JavaScript

$('form').validate();
$('form input').append( "<b>REQUIRED</b>" );