Jquery UI AUtocomplete not working in aurelia.
I INstalled jquery and Jquery ui plugin.
But still getting error when i use autocomplete
Error TS2551 Property ‘autocomplete’ does not exist on type ‘JQuery’.
Below are code. Kindly suggest
("#searchText").autocomplete({
source: tags,
create: function () {
//access to jQuery Autocomplete widget differs depending
//on jQuery UI version - you can also try .data('autocomplete')
(this).data(‘uiAutocomplete’)._renderMenu = customRenderMenu;
}
});