//when the click off email1 it will change it from a text field to a password field
<script>
function change2pass(form){
form.email.type='password';
}
</script>
<input type=text name=email1 size=9 onblur=change2pass(this.form)>
<input type=text name=email2 size=9>
However it gives me the error, could not get the type property?
Is this possible?
<script>
function change2pass(form){
form.email.type='password';
}
</script>
<input type=text name=email1 size=9 onblur=change2pass(this.form)>
<input type=text name=email2 size=9>
However it gives me the error, could not get the type property?
Is this possible?