First time home buyer book

Your eBook is Ready!

Your eBook can be downloaded using the button below and you
have any questions, please don't hesitate to reach out, I'm here for you anytime.

Begin your home loan process today!

Local Loan
Consultations

Timely and Accurate
Communication

Industry-Leading
Product-Selection

The right tools to help you every step of the way

// --- 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'; } } }