Sol Web Solutions Blog
Sol Web Solutions Blog is aimed to help, inform, educate and enable our site visitors.
SharePoint 2007 Calendar View to Hide 12:00 AM
- Font size: Larger Smaller
- Hits: 31598
- 0 Comments
- Subscribe to this entry
- Bookmark
Dealing with SharePoint 2007 Calendar view. We are trying some javascript via a content editor to hide the "12:00 AM" when viewing the data from a calendar view.
Via a Content Editor Web Part we hid all instances of "12:00 AM" via:
<script type="text/j-avascript"> var el = document.getElementsByTagName('a'); for(var i=0; i < el.length; i++) { el[i].innerHTML = el[i].innerHTML.replace("12:00 AM",""); } </script>