Announcements

The latest news updates and news about everything that's happening in and around Christ Church.

Email Newsletter

Stay Connected

Please share your contact informaiton to receive our weekly newsletter.
document.addEventListener('DOMContentLoaded', function() { // Find all elements with the truncate-text class const elementsToTruncate = document.querySelectorAll('.truncate-text'); // Loop through each element elementsToTruncate.forEach(function(element) { const originalText = element.textContent; // If text is longer than 50 characters, truncate it if (originalText.length > 50) { const truncatedText = originalText.substring(0, 50) + '...'; element.textContent = truncatedText; } }); });