- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
// Эта функция автоматически обработает все текстовые поля (text,password).
// Если у вас изначально задано значение для поля, то при фокусировании поля - значение пропадёт, если пользователь не введёт новое значение, то вернётся первоначальное.
// Это jQuery версия
$("input:text, textarea, input:password").each(function () {
if (this.value == '') this.value = this.title;
});
$("input:text, textarea, input:password").focus(function () {
if (this.value == this.title) this.value = '';
});
$("input:text, textarea, input:password").blur(function () {
if (this.value == '') this.value = this.title;
});
$("input:image, input:button, input:submit").click(function () {
$(this.form.elements).each(function () {
if (this.type == 'text' || this.type == 'textarea' || this.type == 'password') {
if (this.value == this.title && this.title != '') {
this.value = '';
}
}
});
});
striker 29.11.2009 16:56 # +2
chu4 29.11.2009 17:12 # +1
guest 30.11.2009 14:51 # 0
striker 30.11.2009 15:18 # −1
в остальном вы правы
chu4 30.11.2009 19:07 # 0
guest 19.01.2010 13:33 # 0