Best way to disable button in Twitter's Bootstrap [duplicate] Best way to disable button in Twitter's Bootstrap [duplicate] javascript javascript

Best way to disable button in Twitter's Bootstrap [duplicate]


You just need the $('button').prop('disabled', true); part, the button will automatically take the disabled class.


For input and button:

$('button').prop('disabled', true);

For anchor:

$('a').attr('disabled', true);

Checked in firefox, chrome.

See http://jsfiddle.net/czL54/2/


Building off jeroenk's answer, here's the rundown:

$('button').addClass('disabled'); // Disables visually$('button').prop('disabled', true); // Disables visually + functionally$('input[type=button]').addClass('disabled'); // Disables visually$('input[type=button]').prop('disabled', true); // Disables visually + functionally$('a').addClass('disabled'); // Disables visually$('a').prop('disabled', true); // Does nothing$('a').attr('disabled', 'disabled'); // Disables visually

See fiddle