$('#hFromDate').val($('#fromDate').val());
$('#hToDate').val($('#toDate').val());
$('#fromDate').datepicker({
format: "dd/mm/yyyy",
})
.on('changeDate', function(ev){
$('#fromDate').change();
});
$('#fromDate').change(function(){
console.log($('#fromDate').val());
$('#hFromDate').val($('#fromDate').val())
});
$('#toDate').datepicker({
format: "dd/mm/yyyy",
})
.on('changeDate', function(ev){
$('#toDate').change();
});
$('#toDate').change(function(){
console.log($('#toDate').val());
$('#hToDate').val($('#toDate').val())
});
ไม่มีความคิดเห็น:
แสดงความคิดเห็น