A comprehensive demonstration of the Nepali Date Picker functionality
ЁЯМН Language Support
Date picker with language options (English and Nepali):
// English date picker
$('#basic-date').nepaliDatePicker({ language: 'en' });
// Nepali date picker
$('#nepali-date').nepaliDatePicker({ language: 'np' });
тЪЩя╕П Advanced Configuration
Date picker with custom settings and date range restrictions:
// Custom format
$('#custom-date').nepaliDatePicker({
dateFormat: "%M %d, %y",
closeOnDateSelect: false
});
// Date range restriction
$('#range-date').nepaliDatePicker({
yearStart: 2080,
yearEnd: 2085
});
// Min/Max date
$('#min-date').nepaliDatePicker({
minDate: "рдЖрдЗрдд, рдмреИрд╢рд╛рдЦ рез, реирежреореж"
});
$('#max-date').nepaliDatePicker({
maxDate: "рд╕реЛрдо, рдкреМрд╖ резрел, реирежреорел"
});