fullcalander HTML locale chance
How can I change the fullcalendar html language dynamically on page load?
Replies (1)
Deleted comment
Hi,
You can execute any custom js code after the core-js components and plugins are loaded and available by using the below utility method:
// On document ready
KTUtil.onDOMContentLoaded(function () {
// put your custom code
}); You can also put the above code in the HTML code, at the bottom, after all JS is included.
Regards.