tags:

views:

33

answers:

1

Is it possible to enable native browser autocomplete for textareas. Would like something that works just like the input-text construct, but for textarea in order to support multi-line input.

A: 

You can use autocomplete on textareas.

I don't know what you mean by "native browser autocomplete".

You can do autocomplete with script, using the jqueryUI autocomplete widget.

A working example: http://jsbin.com/usuwe/2

Cheeso