Customize SharePoint Calendar Days Name using jQuery
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjN8gmMx8TTVMTPLwGEZG63hg6U-_9tlhXVPzjblkD0O0ew09-uBeaCjqKZLs7_DbDLZSIV0bysLi3PUoZqGCiYx1Dj5imcXo6LLv8G_Y7jYiH8RlibrqS9j7ReCG9r_KRW7pqWwCZ4Kxdj/s640/Calendar.png)
How to Customize SharePoint Calendar Days Name using jQuery Step1: Create a page and calendar list to it. Step2: Now add Script Editor Web Part to it and paste the below code. Code- <script src="//code.jquery.com/jquery-3.2.1.min.js"></script> <script type="text/javascript"> //execute the script only when the calendar JS file loads LoadSodByKey("SP.UI.ApplicationPages.Calendar.js", function () { WaitForCalendarToLoad(); }); function WaitForCalendarToLoad() { //running your function for the first time IF YOU NEED TO! ChangeDaysName(); var _onItemsSucceed = SP.UI.ApplicationPages.CalendarStateHandler.prototype.onItemsSucceed; SP.UI.ApplicationPages.CalendarStateHandler.prototype.onItemsSucceed = function($p0, $p1) { _onItemsSucceed.call(this, $p0, $p1); ...