paul_mills
04-01-2005, 09:27 AM
I have the following script.....
<SCRIPT language="JavaScript"><!--
function GateKeeper() {
var password = prompt("Password required:", "");
if (password) { this.location.href = password + ".html"; }}
//--></SCRIPT>
... How can i modify this script so that users will only view asterisks(****) when they type in a password. Is it possible or are there any alternative?
Thanks
<SCRIPT language="JavaScript"><!--
function GateKeeper() {
var password = prompt("Password required:", "");
if (password) { this.location.href = password + ".html"; }}
//--></SCRIPT>
... How can i modify this script so that users will only view asterisks(****) when they type in a password. Is it possible or are there any alternative?
Thanks