Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Listen to password reveal event

IE10 has a feature that reveals the content of a password field at the click of a button. Is there any way to detect that this is happening?

Of course, I can fall back to looking for a click where I expect that button to be, but that's not ideal.

like image 906
ColBeseder Avatar asked May 11 '13 21:05

ColBeseder


Video Answer


1 Answers

Seeing as there are no answers, for future searchers, this is the best I have so far:

It's possible to hide the button by using this css:

::-ms-reveal {
    display: none;
}
like image 74
ColBeseder Avatar answered Sep 18 '22 15:09

ColBeseder