Rector's Ramblings

Thoughts and reflections from the Rector, sharing stories and insights on life and faith.

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; } }); });