Подсказка в строке состояния по заполнения полей формы
[
]
30 Июл 2007, 13:00:37
Подсказка в строке состояния по заполнения полей формы
Имя: E-mail:
<html> <head> <title>Подсказка в строке состояния</title> <script language="JavaScript"> <!-- // hide form other browsers function help(message) { self.status = message; return true; } function checkField(field) { if (field.value == "") help("Remember to enter a value in this field"); else help(""); return true; } // stop hiding form other browsers --> </script> </head> <body> <form method="post"> Имя: <input type="text" name="name" onFocus="help('Enter your name');" onBlur="checkField(this);"> E-mail: <input type="text" name="email" onFocus="help('Enter your email address');" onBlur="checkField(this);"> </body> </html>