Category

Подсказка в поле для ввода

Вот пример того, как можно сделать такую подсказку при помощи jQuery, чтобы она автоматически появлялась/исчезала при фокусе на элементе.
Пример:

Исходный код: Plugin;
Пример вызова скрипта:

<script type="text/javascript">
$(document).ready(function() {
  $('input:text').hint();
});
</script>
<style type="text/css">
input.input-hint {
color: #aaa;
font-style: italic;
}
</style>

Статья-оригинал: http://remysharp.com/2007/01/25/jquery-tutorial-text-box-hints/

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Allowed HTML tags: <em> <strong> <cite> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options

CAPTCHA
Это простая проверка на то, что со мной общается человек, а не глупая машина. Умные машины тоже не приветствуются :)
Image CAPTCHA
Enter the characters shown in the image.
© 2008-2009. Konstantin Artemov