Right now I have my calendar working and set up so that paste dates are disabled according from today's date. How can I also disable dates after 365 days from the current date?
fiddle: https://jsfiddle.net/ts8acmow/1/
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth() + 1;
var yyyy = today.getFullYear();
if(dd<10){
dd='0'+dd
}
if(mm<10){
mm='0'+mm
}
today = yyyy+'-'+mm+'-'+dd;
document.getElementById("start").setAttribute("min", today);