I am trying to load date to date field when edit
<input type="date" id="Date-Id" />
*************
var date = moment(Date).format('L');
in alert date show =12/14/2017 but text box cant load ,,it shows mm/dd/yyyy
*****************
//for load date to text box in edit mode
$('#Date-Id').val(date);
*************