JSFiddle - React, Tailwind, and code Playground

No Releases Report Test

by Jennifer Perrin

HTML

<label>
    <input name="report" id="radType_0" type="radio" value="FYDP" checked="checked" />FYDP CAPCES Update
</label>

<label>
    <input name="report" id="radType_1" type="radio" value="ACSIMUPD" />ACSIM Update
</label>

<hr />

<label class="labProgid notformno" title="*=multiple select">Program*<br />
    <select name="labProgid[]" id="labProgid" size="4" class="labProgid notformno selectall hierarchical" multiple="multiple">
        <option value="ALL" selected="selected">ALL</option>
    </select>
</label>

JavaScript

$(document).ready(function () {

    $('#radType_0').click(function() {
        var acsimProg = [
            'one',
            'two',
            'three'
        ];
        
        
    });
    $('#radType_1').click(function() {
        
    });
});