Answer by BigJoeNH for Disabling Controls in Bootstrap
Remember for jQuery 1.6+ you should use the .prop() function.$("input").prop('disabled', true);$("input").prop('disabled', false);
View ArticleAnswer by zahid ullah for Disabling Controls in Bootstrap
also you can use "readonly"<select id="xxx" name="xxx" class="input-medium" readonly>
View ArticleAnswer by Alagesan for Disabling Controls in Bootstrap
<select id="message_tag"><optgroup><option>........</option></optgroup>here i just removed bootstrap css for only "select" element. using following css...
View ArticleAnswer by Jeromy French for Disabling Controls in Bootstrap
No, Bootstrap does not introduce special considerations for disabling a drop-down.<select id="xxx" name="xxx" class="input-medium" disabled>or<select id="xxx" name="xxx" class="input-medium"...
View ArticleAnswer by Murat Çorlu for Disabling Controls in Bootstrap
Try<select id="xxx" name="xxx" class="input-medium" disabled>
View ArticleAnswer by silly for Disabling Controls in Bootstrap
try$('#xxx').attr('disabled', true);
View ArticleDisabling Controls in Bootstrap
I'm using Bootstrap css and js in my application. Accidentally I clicked on a disabled Dropdown list and found that it's opening the dropdown. I have made it readonly in the attribute of the select...
View Article