There are many links on this issue but none of them are helping and I am using the below simple JQuery Code, I have tried with CDN too- google CDN, it is giving same error and my autocomplete functionality not working.
Getting this error: Uncaught TypeError: $(...).autocomplete is not a function
Source Code:
`
<script type="text/javascript" >
$(function () {
$("#txtSearch").autocomplete({
source: '@Url.Action("GetStudents")'
});
});
</script>`