Answer the question
In order to leave comments, you need to log in
Bootstrap 4, disable past dates for input type date?
Bootstrap 4
// HTML
<input class="form-control" type="datetime-local">
//JS - в старом делал примерно так
var nowDate = new Date();
var today = new Date(nowDate.getFullYear(), nowDate.getMonth(), nowDate.getDate(), 0, 0, 0, 0);
$('#date').datepicker({
startDate: today
});
Answer the question
In order to leave comments, you need to log in
What is your backend written in? You need to add support for CORS, google on request %backend% enable CORS
If on express, then here https://github.com/expressjs/cors
Using search is sometimes very useful: https://stackoverflow.com/questions/16123056/boots...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question