autocomplete - Autocomplete contents of an input field.
autocomplete - Скрипт за атоматично довършване на съдържанието на поле.


EN

To use this script the INPUT field's tag, which will be autocompleted should have an attribute autocomplete with one of the followig values:

- array:nameOfArray - where nameOfArray is the name of an JavaScript array object

/ an example from the source of this page /
<INPUT id="months" type="text" name="months" autocomplete="array:food">

var food = new Array( 'Eggs', 'Meat', 'Chop', 'Salad', 'Pizza', 'Burger' )

- list:listItem1|listItem2|listItem3 - where listItemXX is an item from the list of items for completion

/ again an example from the source of this page /
autocomplete="list:Иван|Юлия|Петър|Георги|Димитър"


requires:
moautocomplete.js

browser supported:
IE 5+, Mozilla /NS 6,7/

BG

За да се ползва трябва INPUT таг-а, за който трябва да се довършва съдържанието да има атрибут autocomplete със стойност:

array:nameOfArray - където nameOfArray е името на JavaScript масив

/ пример от кода на тази страница /
<INPUT id="months" type="text" name="months" autocomplete="array:food">

var food = new Array( 'Eggs', 'Meat', 'Chop', 'Salad', 'Pizza', 'Burger' )

list:listItem1|listItem2|listItem3 - където listItemXX е отделен елемент от списъка за довършване

/ пак пример от кода на тази страница /
autocomplete="list:Иван|Юлия|Петър|Георги|Димитър"


изисква:
moautocomplete.js

работи под:
IE 5+, Mozilla /NS 6,7/

examples / примери:

Months / Месеци
Food/ Храна ( 'Eggs', 'Meat' etc. )
Names (the list is attached as an attribute to the input)
Имена (списъкът е прикачен като атрибут)
Files / Файлове: