I have a texbox which has auto suggestion option while typing. I want to restrict user to select option from the suggested list only. currently auto suggestion list appear but user can enter and select his own option. any help please.
jQuery().ready(function() {
jQuery("#ingr").autocomplete("<?php bloginfo('template_directory');?>/grocery/autocomplete.php", {
width: 260,
matchContains: true,
});
});