JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" class="dummy" disabled="disabled" value="blue" />
CSS
input[type="text"]:disabled{color:blue;}
JavaScript
if ($.browser.msie) {
$("input[type='text'][disabled='disabled']").each(function() {
$(this).removeAttr("disabled");
$(this).attr("onclick", "javascript:return false;");
});
}