Vov4ik
Vov4ik

Reputation: 333

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

Is this possible to change the default styling of password field? I mean replacing the default stars-symbols with something like • or etc. jQuery or simply css/html? Thanx.

Upvotes: 4

Views: 2124

Answers (1)

John Sheehan
John Sheehan

Reputation: 78104

The masking characters are set by the browser and operating system and you can't customize them with CSS.

Here's a thread that covers it more. You could fake it, but it will break if JavaScript is disabled.

Upvotes: 2

Related Questions