Looking through the docs there doesn’t appear to be anything in the API for detecting AFTER the autocomplete widget has rendered so how could I do this? Rendering occurs whenever the results change and the menu needs to be re-rendered.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is the
.create()event that gets fired when the autocomplete is rendered. Would this work?Edit:
It sounds like you may want either the
.change()or.response()event.Edit 2:
I think you’re actually looking for the
.open()event which is triggered every time the suggestion menu is opened or updated.