In jQuery Mobile, following this answer, I have a button that is disabled with class "ui-disabled" .
<input type="submit" class="ui-disabled" value="Register" onClick="rcRegister();" >
The question arises, how does one display the disabled state in JQuery Mobile by greying our the field?
I have tried to add this CSS but it has no effect.
input.ui-disabled {
color: gray;
}
I am using jQuery Mobile 1.2.0 and jQuery 1.7.2 .