Joshua Johnson

Mortgage Loan Officer | NMLS: 2621003

Review Me

Thank you for taking the time to leave your review!

Joshua Johnson picture
Joshua Johnson picture

Joshua Johnson

Mortgage Loan Officer

Dream House Virginia, LLC | NMLS: 2621003

Getting started is Quick & Easy

If you have any questions, I’m here for you

purchase

refinance

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