JSFiddle - React, Tailwind, and code Playground
by Sourav Chatterjee
HTML
<span id="spnSel">
<select name="yosh" id="yosh">
<option value="daily">daily</option>
<option value="weekly">yesterday</option>
<option value="weekly">weekly</option>
<option value="monthly">monthly</option>
<option value="yearly">yearly</option>
</select>
</span>
<button class= "enable">
Enable
</button>
<button class="disable">
Disable
</button>
<form id="test">
<input type="text" id="name">
<input type="text" id="secondname">
</form>
JavaScript
$('.enable').click(function () {
$('#name , #secondname').prop('disabled', true);
});
$('.disable').click(function () {
$('#name , #secondname').prop('disabled', false);
});