Der Martin: Password Feld mit Default-Text füllen

Beitrag lesen

Hi,

ich nochmal ...

»» <input type="text" name="pass" id="pass" value="Password" class="ff250" onfocus="if (this.type=='text') this.value=''; this.type='password';">
Jetz' besser. :-)

Mit einer günstig gesetzten Klammer wird's noch ordentlicher:

<input type="text" name="pass" id="pass" value="Password" class="ff250" onfocus="if (this.type=='text') { this.value=''; this.type='password'; }">

Die ungeklammerte Version hätte auch funktioniert, dann würde die Zuweisung this.type='password' aber jedesmal ausgeführt. Ist nicht schlimm, aber auch nicht besonders elegant.

Ciao,
 Martin

--
You say, it cannot be love if it isn't for ever.
But let me tell you: Sometimes, a single scene can be more to remember than the whole play.