Подскажите как сделать поле типа select, что бы можно было с ID работать, только через input.
Думаю реальный input ID скрыть, и сделать еще одно поле input для автозаполнения.
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js" ></script>
<input id="id" type="text">
<input id="text" type="text">
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#text').autocomplete({
source: "ПУТЬ" ,
minlength:1,
autofocus:true,
select:function(event,ui){
$("#text").val(ui.item.value);
$("#id").val(ui.item.id);
}
});
});
</script>
Как сделать чтобы выбор был обязательным из всплывающих подсказок?