Execute submit after auto complete field

0

How can I make this code below that soon after completing the auto complete in the field, and when choosing the registry it immediately perform the form submit

Example of working code below

window.onload=function(){

$(document).ready(function() {
$('input.typeahead-devs').typeahead({
  name: 'accounts',
  local: ['Sunday', 'Monday', 'Tuesday','Wednesday','Thursday','Friday','Saturday']
});
})


}//]]> 
    .typeahead-devs, .tt-hint {
 	border: 2px solid #CCCCCC;
    border-radius: 8px 8px 8px 8px;
    font-size: 24px;
    height: 45px;
    line-height: 30px;
    outline: medium none;
    padding: 8px 12px;
    width: 400px;
}

.tt-dropdown-menu {
  width: 400px;
  margin-top: 5px;
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px 8px 8px 8px;
  font-size: 18px;
  color: #111;
  background-color: #F1F1F1;
}
<link rel="stylesheet" type="text/css" href="http://transfer-online.net/gerenciador/files/includes/auto_compl/css/bootstrap.css">
      <script type="text/javascript" src="http://transfer-online.net/gerenciador/files/includes/auto_compl/js/jquery.js"></script><scripttype="text/javascript" src="http://transfer-online.net/gerenciador/files/includes/auto_compl/js/bootstrap.js"></script><scripttype="text/javascript" src="http://transfer-online.net/gerenciador/files/includes/auto_compl/js/typeahead.js"></script><inputtype="text" name="accounts" size="20" class="typeahead-devs" placeholder="Please Enter Day Name">
    
asked by anonymous 11.04.2017 / 02:19

1 answer

0

An alternative would be to call the submit() of the form when the field loses focus through the onfocusout

<input type="text" name="accounts" onfocusout="form.submit();" size="20" class="typeahead-devs" placeholder="Please Enter Day Name">
    
11.04.2017 / 05:27