Continue Where You Left Off...

Newest

20:26

Peter Failed Christ—But Jesus Wasn’t Finished With Him

37:04

Did Paul Really Say Women Can’t Teach Men?

2026 Fellowship Conference New York

43:17

The Dangerous Burden of Man-Made Christianity

48:41

Peter’s Greatest Failure—and the Mercy That Found Him

33:05

Q&A: What Do Your Daily Devotions Actually Look Like?

53:10

Brother Saul: The Radical Grace of God’s Adoption

43:46

The Darkest 6 Hours: What Jesus Really Felt on the Cross

1:05:53

The Necessity of Solitude: Savoring Christ In An Age of Distraction

August 13–15: Fellowship Conference New York 2026

54:33

Spiritual Recovery From Lukewarm Christianity

52:32

Why Satan Demands a “Skin for Skin” Faith

52:53

When Satan Accuses You, Christ Defends You

28:17

Danger of Judging God by Your Emotions

52:01

Is It Unloving to Rebuke Bad Doctrine?

Consider Watching

50:27

15 Reasons Folks Skip The Prayer Meeting

18:34

Mary Ann’s Last Hour—Afraid To Believe She Was A Believer

I Can’t Let Go (Give Up and Fall in the Arms of Christ)

55:44

Putting Off the Old Man and Putting On the New Man

22:58

What Does it Mean to Be a Christian?

1:15:06

The Unpardonable Sin – Blasphemy Against the Holy Spirit

1:00:45

The Battle With Sin: Who is the Greatest? (Part 4)

45:47

The Exalted Christ

55:50

Act Like Men: Standing Firm In The Faith and Conduct

13:59

A Living Bright Reality & Become A Man of God?

Series

2024 Men's Retreat 3 Parts

2024 Men's Retreat

2021 Fellowship Conference 19 Parts

2021 Fellowship Conference

2016 Fellowship Conference 7 Parts

2016 Fellowship Conference

Christian Maturity 5 Parts

Christian Maturity

2014 Fellowship Conference 4 Parts

2014 Fellowship Conference

Clint Leiter Interview 9 Parts

Clint Leiter Interview

Homiletics: Sermon Preparation and Delivery 10 Parts

Homiletics: Sermon Preparation and Delivery

The Unity of the Church 4 Parts

The Unity of the Church

Prayer (97)Sanctification (73)Jesus Christ (70)Bible Reading (52)Evangelism (47)Encouragement (47)Pride & Humility (46)The Church (43)Faith (41)The Gospel (41)
See More

No favorites found.'; } setTimeout(checkArrows, 300); } // Load continue listening history from localStorage function loadContinueListening() { const history = JSON.parse(localStorage.getItem('viewingHistory')) || []; const continueListeningRow = document.getElementById('continue-listening-row'); const continueListeningHeading = document.getElementById('continue-listening-heading'); const continueListeningContainer = document.getElementById('continue-listening-container'); continueListeningRow.innerHTML = ''; if (history.length > 0) { // Show heading and container if there is history continueListeningHeading.style.display = 'block'; continueListeningContainer.style.display = 'block'; // Clone and append history items to the continue listening row history.forEach(postId => { const postItem = document.querySelector(`.post-item[data-post-id="${String(postId)}"]`); if (postItem) { continueListeningRow.appendChild(postItem.cloneNode(true)); } }); } else { // Hide heading and container if no history continueListeningHeading.style.display = 'none'; continueListeningContainer.style.display = 'none'; } setTimeout(checkArrows, 300); } // Check visibility of left and right arrows for scrolling function checkArrows() { const postRowContainers = document.querySelectorAll('.post-row-container'); postRowContainers.forEach(container => { const postRow = container.querySelector('.post-row'); const leftArrow = container.querySelector('.arrow-button.left'); const rightArrow = container.querySelector('.arrow-button.right'); // Hide arrows if content does not overflow if (postRow.scrollWidth <= postRow.clientWidth) { leftArrow.style.display = 'none'; rightArrow.style.display = 'none'; } else { // Initially hide the left arrow, show the right arrow leftArrow.style.display = 'none'; rightArrow.style.display = 'block'; } // Add scroll event to update arrow visibility postRow.addEventListener('scroll', () => { leftArrow.style.display = postRow.scrollLeft > 0 ? 'block' : 'none'; rightArrow.style.display = postRow.scrollLeft + postRow.clientWidth >= postRow.scrollWidth ? 'none' : 'block'; }); }); } // Add click event listeners to left and right arrows for scrolling const postRowContainers = document.querySelectorAll('.post-row-container'); postRowContainers.forEach(container => { const postRow = container.querySelector('.post-row'); const leftArrow = container.querySelector('.arrow-button.left'); const rightArrow = container.querySelector('.arrow-button.right'); // Scroll left when left arrow is clicked leftArrow.addEventListener('click', () => { postRow.scrollBy({ left: -postRow.clientWidth, behavior: 'smooth' }); }); // Scroll right when right arrow is clicked rightArrow.addEventListener('click', () => { postRow.scrollBy({ left: postRow.clientWidth, behavior: 'smooth' }); }); // Check arrows visibility on load checkArrows(); // Add scroll event to update arrow visibility postRow.addEventListener('scroll', () => { leftArrow.style.display = postRow.scrollLeft > 0 ? 'block' : 'none'; rightArrow.style.display = postRow.scrollLeft + postRow.clientWidth >= postRow.scrollWidth ? 'none' : 'block'; }); }); // Recheck arrows after the entire page is loaded window.addEventListener('load', () => { setTimeout(checkArrows, 300); }); // Load initial data for continue listening and favorites loadContinueListening(); loadFavorites(); }); // Enable horizontal scrolling for tags filter on mobile devices document.addEventListener('DOMContentLoaded', function() { const tagsFilter = document.getElementById('tags-filter'); let isDown = false; let startX; let scrollLeft; // Mouse down event to start scrolling tagsFilter.addEventListener('mousedown', (e) => { isDown = true; tagsFilter.classList.add('active'); startX = e.pageX - tagsFilter.offsetLeft; scrollLeft = tagsFilter.scrollLeft; }); // Mouse leave event to stop scrolling tagsFilter.addEventListener('mouseleave', () => { isDown = false; tagsFilter.classList.remove('active'); }); // Mouse up event to stop scrolling tagsFilter.addEventListener('mouseup', () => { isDown = false; tagsFilter.classList.remove('active'); }); // Mouse move event to handle the scrolling tagsFilter.addEventListener('mousemove', (e) => { if (!isDown) return; e.preventDefault(); const x = e.pageX - tagsFilter.offsetLeft; const walk = (x - startX) * 3; // Multiply for faster scrolling tagsFilter.scrollLeft = scrollLeft - walk; }); });