$(function() {
$(\'input.month-mode\').datetimepicker({
viewMode: \'months\',
format: \'MM/YYYY\',
showClose: true,
maxDate: curr
One way to do this is to use the icon classes to a add a new class and then use css to add some content. Something like:
$(function() {
$('input.month-mode').datetimepicker({
viewMode: 'months',
format: 'MM/YYYY',
showClose: true,
maxDate: current_month,
icons: {
close: 'textclass1'
}
});
});
Css:
.textclass1::before {
content: "Close";
}