I\'m having a problem re-enabling an input after it has been disabled on the page load.
I\'m using two inputs to accept two dates, but I want it that the second input is
Try with removeAttr like
removeAttr
$("#date1-end").removeAttr("disabled");
You can also try with prop like
prop
$("#date1-end").prop("disabled",false);