I want to know what is the best way to add a style in the code below so that the readonly textboxs are coloured grey?
$("[class*=q" + i + "_mark]").val(t_marksHtml).attr('readonly', true);
|
I want to know what is the best way to add a style in the code below so that the readonly textboxs are coloured grey?
|
||||
|
Try
and apply css in .read-only-state class
|
|||
|
|
|
This can be done in pure CSS:
or (better yet) left to the browser. |
|||
|
|
|
Why don't you use pure CSS?
|
|||
|
|
|
just use attribute selector
But its better to do with CSS only as
|
|||
|
|
|
basically, use this for all html tags with readonly attribute.
only input tags
|
|||
|
|
disabledinputs are greyed out by default – Rory McCrossan Dec 13 '12 at 12:33