Hi,
How do you similate a password field in a input text box field without using type="password"? For instance, what if I wanted to maske it with a "-" instead of a "*"?
I have it kind of working but I don't know if this is the best way to do it or if there was a more robust way.
Thanks.
-Tyler
How do you similate a password field in a input text box field without using type="password"? For instance, what if I wanted to maske it with a "-" instead of a "*"?
I have it kind of working but I don't know if this is the best way to do it or if there was a more robust way.
Code:
function toDash (evt) {
var keyCode = evt.keyCode ? evt.keyCode : evt.charCode ? evt.charCode : evt.which ? evt.which : void 0;
if (keyCode) {
window.event.keyCode = "-".charCodeAt();
return true;
}
return false;
}
Thanks.
-Tyler