Reputation: 12179
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.
Upvotes: 0
Views: 616
Reputation: 8050
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.
Upvotes: 1