Skip to content

Instantly share code, notes, and snippets.

@a-ignatov-parc
Created May 12, 2012 04:14
Show Gist options
  • Save a-ignatov-parc/2664099 to your computer and use it in GitHub Desktop.
Save a-ignatov-parc/2664099 to your computer and use it in GitHub Desktop.
var suggest = target
.autocomplete({
...
}) // Инициализируем у инпута автокомплит с набором параметров
.data('autocompleter'); // Сохраняем в переменную suggest объект автокомплита сохраненный в data атрибуте autocompleter за счет чейнинга
// Изменяем поведение метода position на нужное
suggest.position = function() {
var offset = this.dom.$elem.offset();
this.dom.$results.css({
bottom: Plca.view.partials.$body.height() - offset.top,
left: offset.left
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment