Trouble with autocomplete

Trouble with autocomplete

Im trying to get the value of an date input to use it with a php function which return a result that depend of the date entrend
any Ideas

  1. <script type="text/javascript">
  2. $(function(){ 
  3.                 $("#Salle").on('input', function() {
  4.                     $("#Salle").autocomplete({source: 'conf/salle_auto.php?key='+$("#Salle").val()+ '&Datee=' + $("#Date_de_Soutenance").val()  });                });            });       
  5.  </script>


  6. <label>Date</label>  
  7. <input type="date" class="typeahead tt-query"  name="Date_de_Soutenance" value="" placeholder="Date_de_Soutenance" disabled required onblur="Verifdate();">