In my login dialog on my password input, I got a tooltip in the Internet Explorer
, when my focus is on the input and caps lock is activated (all other browsers have not such an default tooltip). I would like to remove this default tooltip without any javascript. Is there an attribute or something else?
Password: <input type="password" required>
Screenshot with the tooltip in IE:
Here is a solution according to the official documentation.
Turns automatic caps lock warning off for validated password input fields.
if (document.msCapsLockWarningOff == false) {
document.msCapsLockWarningOff = true;
}