august 2022
s
m
t
w
t
f
s
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3

        function selectDate(date) {$('#calendar-wrapper').updateCalendarOptions({date:date
        });console.log(calendar.getSelectedDate());}
        var defaultConfig ={weekDayLength:1,date:'08/05/2022',onClickDate:selectDate,showYearDropdown:true,startOnMonday:false,};var calendar =$('#calendar-wrapper').calendar(defaultConfig);console.log(calendar.getSelectedDate());
1234