JSFiddle - React, Tailwind, and code Playground
by Rahul Sharma
HTML
<select id="ddlSDIDepositSchedule">
<option value="0">Please Select One</option>
<option value="1">Semi-Weekly</option>
<option value="2">Monthly</option>
<option value="3">Quarterly</option>
</select>
JavaScript
$('#ddlSDIDepositSchedule').change(function()
{
alert();
});