Re-positioning Jquery UI Autocomplete Results Box

前端 未结 4 1554
予麋鹿
予麋鹿 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:10

    It seems better to use this options

    appendTo: "#autocomplete_target_wrapper",
    menudocking: {
        menucorner: "right top",
        inputcorner: "right bottom",
        collision: "none"
    }
    

    Official link https://forum.jquery.com/topic/autocomplete-menu-docking-position

提交回复
热议问题