gismo: hilfe, riesenproblem!

Beitrag lesen

Vielleicht hilft dir das das geht mit einem Formularfeld und einem Login Button ..
Jaca Script
<script language="Javascript">
function checkPassword()
{
newlocation="http://deineUrl/" + document.form1.passwort.value + ".htm";
parent.document.location.href = newlocation;
}
</SCRIPT>
und das Formular dazu .. <form name="form1" action="javascript:checkPassword( )">
<input type="password" name="passwort" onChange="javascript:checkPassword()" size="15">
<input type="button" onClick="javascript:checkPassword()" value="Log in" name="button">..hoffe das ist das was du haben willst lg gismo