style with jQuery Is it possible to change the default style for a password field? I mean replacing the default aster...">

<input type = "password" ...> style with jQuery

Is it possible to change the default style for a password field? I mean replacing the default asterisk characters with something like &bull; or etc. JQuery or just css / html? Thanx.

+4
source share
2 answers
+3
source

Masking characters are set by the browser and the operating system, and you cannot customize them using CSS.

Here is the stream that covers it more . You can fake it, but it will break if JavaScript is disabled.

+2
source

All Articles