I am doing something that involves auto-filling phrases in ajax's <textarea>. This works fine for me using the jquery autocomplete plugin; however, it is hardcoded to position the popup below <textarea>.
For what I'm working on, <textarea>is at the bottom of the page; I ideally want the options displayed above <textarea>.
Is there a similar existing (and half worthy) autocomplete script that will allow this? My other options are:
- try reinstalling it after the fact using more jquery
- hack plugin code into pieces to move it
- write something from scratch (it sounds simple, but there are a few nuances in decent autocomplete)
Suggestions?
For reference, here is what I ended up with:
#known-parent .ac_results
{
position: fixed !important;
top: auto !important;
bottom: 80px !important;
}
source
share