jquery - Can I style a disabled control using CSS or script? -
I have an HTML div
element on that page when someone is updating Select
Input
tag (text box) based on selection.
Here's the problem: Project stakeholders like functionality, they think in the "disabled" situation, the content of the text box is very light and therefore unreadable. Can I disable css in disabled disabled control? Or should I set the text code to readonly
and use some other CSS If this helps, then this app is also using jQuery and ideas or suggestions here? Input [type = "text"]
input [type = "submit"] [disabled = "disabled"] {/ * css here} [Disable = "disabled"] {/ * css here} input [type = "button"] [disabled = "disabled"] {input tag is something like this:
works in every browser = "disabled" & gt;
And if you want to change it when it is not disabled, then add it to your CSS
input [type = "submit"] { / * Css here * / input [type = "text"] {/ * css here * /} input [type = "button"] {/ * css here * /}
Comments
Post a Comment