ivirabyan / jquery-mentions

Adds mentioning support to your text fields.
http://ivirabyan.github.io/jquery-mentions/
MIT License
114 stars 49 forks source link

Show the drop-down on top of the focused input/textarea #41

Closed valentinjurca closed 8 years ago

valentinjurca commented 8 years ago

Is it posible to show the drop-down list on top of the focused input? My desired input/textarea is fixed to the bottom of the screen and I wish the options to be visible anyway. example

ivirabyan commented 8 years ago

Yes, you can do this using option position of autocomplete plugin:

        $('.mentions').mentionsInput({
            autocomplete: {
                position: { my: "left bottom", at: "left top" }
           }
        });
Declie commented 6 years ago

Is there a way to position the dropdown at the caret position in the textarea? The above solution seems to position the dropdown in relation to the textarea itself...