how to disabled textbox through css
thanks in advance
Printable View
how to disabled textbox through css
thanks in advance
Why do you want to do it in Css when you can do it with an HTML attribute or code?
You can't disable a text input field in CSS. Bottom line; you're going to have to use a HTML attribute as the previous poster mentioned.
:)
A dirty workaround would be to toggle its visibility. Or simply use javascript for dynamically enable/disable it.