field with any image (the same for ...">

Password entry field-> replace bullets with images

I need to replace the bullets in the <input type="password"> field with any image (the same for all bullets). Can this be done using CSS or JavaScript?

+7
source share
2 answers

Right I had noodles on JSFiddle and I came up with http://jsfiddle.net/jamwaffles/SzuD4/ .

This is far from ideal, but it is a starting point. Basically, you need to put a div on top of input . When the div button is pressed, jQuery (sorry, but still JavaScript) will focus the input, making it typed.

+2
source

The only way to change password masking is js, but do you really want to rely on js for the password field? Probably not ...

A similar topic here: <input type = "password" ...> style with jQuery

0
source

All Articles