I use bootstrap-datepicker set properties

 startDate: new Date('01.01.2010'), endDate: new Date() 

Everything is good in chrome , you can’t choose dates earlier than 2010 and later than the current date, but for some reason, moizilla disables any date and there’s no way to choose it, can anyone know how to solve the problem?

So in chrome: enter image description here

This is how it is in the mace: enter image description here

    1 answer 1

    The problem was that the date was transferred in the wrong format, you need to do this:

     startDate: new Date('2010-01-01'), endDate: new Date()