JSFiddle - React, Tailwind, and code Playground

by Reigel Gallarde

HTML

<select id="mySelector">
    <option value="o1">Car details</option>
   <option value="o2">Boat details</option>
   <option value="o3">Train details</option>
</select>

<div id="fLoad">&nbsp;</div>

JavaScript

$('#mySelector').change(function(){
    var $selectForm = '#' + $(this).val();
    $('#fLoad').load('http://fiddle.jshell.net/reigel/KHhqA/show/ ' + $selectForm );
});