Menu
Log in

NORTH AMERICAn HUNTING RETRIEVER ASSOCIATION

  • Home
  • NAHRA Invitational Video

NAHRA Invitational Video

Wed, February 25, 2026 4:05 PM | Carol Black (Administrator)

View the NAHRA Invitational Video produced in 2025. https://www.youtube.com/watch?v=L2x-qGiZu74

P.O. Box 5159
Fredericksburg, VA 22403
(540) 899-7620

Website Support: admin@nahra.org


Powered by Wild Apricot Membership Software
const modal = document.getElementById("videoModal"); const btn = document.getElementById("openBtn"); const close = document.getElementById("closeBtn"); const video = document.getElementById("youtubeVideo"); // Open modal using anchor tag btn.onclick = (event) => { event.preventDefault(); // Prevents the page from jumping or navigating modal.style.display = "flex"; }; // Close modal & stop video (by resetting src) close.onclick = () => { modal.style.display = "none"; let videoSrc = video.src; video.src = videoSrc; // Stops the video from playing in the background }; // Close when clicking outside the box window.onclick = (event) => { if (event.target == modal) { modal.style.display = "none"; video.src = video.src; } };