webta.st.ic
webta.st.ic

Reputation: 5169

Disable default caps lock tooltip in IE input

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:

enter image description here

Upvotes: 0

Views: 1268

Answers (1)

Yaroslav Zaklinsky
Yaroslav Zaklinsky

Reputation: 141

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;
}

Upvotes: 2

Related Questions