Removing the 12:00 timestamp from Calendar View
Occasionally, you have a calendar full of all-day events and you don't want the calendar cluttered up with redundant timestamps. Here's a simple client-side script, suitable for framing (or a master page, or a content editor web part) that will cut down on the visual noise.
<script language="JavaScript">
var allDates = document.getElementsByTagName("nobr");
for(var i=0;i 0) {
allDates[i].innerHTML = allDates[i].innerHTML.replace("12:00 AM","");
}
}
</script>