Re-positioning Jquery UI Autocomplete Results Box

前端 未结 4 1556
予麋鹿
予麋鹿 2021-02-07 00:59

I am using the Jquery UI Autocomplete plugin for a straight forward search term suggestion tool. It is up and running with no problems except that I cannot move the results box

4条回答
  •  梦如初夏
    2021-02-07 01:17

    This can be easily achieved via the position option, specifically the offset property:

    $('#myField').autocomplete({
        source: …,
        position: {
            offset: '20 4' // Shift 20px to the left, 4px down.
        }
    });
    

提交回复
热议问题