Select your Loan Officer

Loading...
I'm not working with a Loan Officer
// --- JOSHUA JOHNSON: DIRECTORY PAGE SCRIPT --- // 1. Find Joshua's specific link to locate his profile block const joshuaLink = document.querySelector('a[href="/loan-officer/joshua-johnson"]'); if (joshuaLink) { // Traverse up to his specific container row const profileCard = joshuaLink.closest('.row.mb-3'); if (profileCard) { // 2. Update Title and NMLS const labels = profileCard.querySelectorAll('label'); if (labels.length >= 2) { labels[0].innerText = 'Owner/Broker'; labels[1].innerText = 'NMLS: 1756718 | Company NMLS: 2621003'; } // 3. Update Phone Number const phoneLink = profileCard.querySelector('a[href^="tel:"]'); if (phoneLink) { phoneLink.href = 'tel:804-882-5959'; phoneLink.innerText = '804-882-5959'; } // 4. Update Email Link (Leaves visible text as "Email Joshua") const emailLink = profileCard.querySelector('a[href^="mailto:"]'); if (emailLink) { emailLink.href = 'mailto:josh@dreamhousevirginia.com'; } } }