el_pup_le
el_pup_le

Reputation: 12179

No callback for completely rendered autocomplete

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

Answers (1)

Jason Towne
Jason Towne

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

Related Questions