jquery-tagsinput-revisited
jquery-tagsinput-revisited copied to clipboard
Cannot read property 'autocomplete' of undefined
I have been facing the error Cannot read property 'autocomplete' of undefined only in case if I have another autocomplete/select2 field in same page.
But it was fine after following update Please update following change
if (jQuery.ui.autocomplete !== undefined) to if (jQuery.ui && jQuery.ui.autocomplete !== undefined)
Thanks, I had the same issue and the fix was very similar