Hallo,
I have a question with the javascript function autocomplete.
<input type="search" id="doctor" name="DoctorSearch" />
<script type="text/javascript">
$(function () {
$('#doctor').autocomplete({
source: '@Url.Action("DoctorSearch")',
minlength: 0
});
})
</script>
I would like view the results in a html table and not in a list with <ul> and <li>.
Have everyone a idea?