0

I have a clarification,probably a simple one..Once we enter some values in input type for text,date ect ,the previous values which we entered is stored.(probably a cookie) until we give autocomplete off..

Why this happens only in textboxes and not in text area by default?

codelover
  • 317
  • 1
  • 11
  • Or you could try using the search engine to find a already opened question for this: http://stackoverflow.com/questions/1876128/native-browser-autocomplete-for-textarea – MiKE Feb 08 '14 at 17:46

1 Answers1

1

This is something which does not exist in browsers.

If you wish to have it, you can use the jQueryUI autocomplete widget on textareas.

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

(from here)

Community
  • 1
  • 1
malta
  • 858
  • 1
  • 9
  • 17