JSFiddle - React, Tailwind, and code Playground
by hcanning2012
HTML
<div class="col-md-2 themed-grid-col"><input type="checkbox" id="t1-check" name="t1-check" > Show Cost</div>
JavaScript
$('select[name="tuitionDropdown"]').change(function(){
if ($(this).val() == "1"){
$('#tuitionPane').load( 'includes/include1.html' );
}
});
$('#t1-check').click(function(){
alert("alert");
});