Re-positioning Jquery UI Autocomplete Results Box

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

    Something like this would work too

    open : function(){
            $(".ui-autocomplete:visible").css({top:"+=5",left:"-=2"});
        },
    

提交回复
热议问题