Forum Discussion
LonTcopp
2 years agoCommunity Member
Converting input text to a password icon/asterisk as you type?
Hello: can this be done?: Id like a user to type a password into a box. As they type, the letter are instantly concerted to small circles or asterisks as happe d when you enter a password in a sit...
CorporateTra830
4 months agoCommunity Member
I tried this is not working.
Nedim
4 months agoCommunity Member
Try this when the timeline starts:
var input = document.querySelector('.acc-textinput');
input.addEventListener("keydown", function () {
let length = input.value.length;
input.value = "*".repeat(length);
});