The last version of Internet Explorer, version 11, was released on October 17, 2013. This is a very long time ago when taking into account the rapid development of web technologies. These days it is often difficult and time consuming to get modern technologies to work well in this old browser. More and more frameworks are dropping support, and even Microsoft themselves has announced that they will fully drop support for IE in their own services in 2021.
Consequently, we have decided to not include support for IE in the Design Library website.
Luckily, there are modern options in active development. Please use Firefox, Edge or Chrome instead.
Disabled states occur when buttons or features can't be used because something's missing, like incomplete form fields or lack of permissions.
Disabled states are commonly used in user interface design to indicate that a certain feature or function is currently unavailable. However, they can often lead to confusion and frustration for users, particularly those with disabilities. By considering alternatives and focusing on accessibility, designers can create UIs that are more inclusive and user-friendly.
Disabled states can be ambiguous and confusing for users. Users may not understand why they can't interact with a certain element and may struggle to figure out how to enable it. This can lead to a frustrating user experience.
Disabled states can also pose accessibility issues.
One alternative to using a disabled state is to keep the UI element enabled. Then, upon user interaction, provide a contextual helper text or use a tooltip or toast to explain why the action can't currently be performed.
Another approach is to hide elements that are not relevant in the current context. This can help declutter the UI and allow users to focus on the task at hand. However, this should be done carefully to avoid causing confusion or spatial inconsistencies.
Instead of disabling a submit button until all form fields are filled out correctly, consider enabling the button and validating user input on submit. If there are errors, provide clear and specific error messages to help the user correct them.