hello,
How to disable previous date in jQuery date picker.
I am using jQuery date picker
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
<script>
$( function() {
$("#<%=txtdate.ClientID %>").datepicker();
minDate: 0
});
</script>
i want to disable previous date so user cannot select it.
please advice