Ready to take the next step toward homeownership? Fill out our quick and easy pre-qualification form to see how much you may qualify for—no impact on your credit score! Our team is here to help you find the best loan options tailored to your needs. Get started today!
Get a Quick Quote
// --- 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';
}
}
}