How to disable a textbox in CSS? Currently we are having a textbox in our view which can be enabled/disabled depending on a property in the model. We are having asp.net MVC
you can disable via css:
pointer-events: none;
Doesn't work everywhere though.