✅
Deal Submitted Successfully
Your deal has been submitted!
We'll review your deal details and contact you shortly. Our team typically responds within 24-48 hours.
1
Deal received — your submission is in our system
2
We review the numbers — our team analyzes your deal within 24-48 hours
3
We'll reach out — if it looks good, we'll contact you to move forward
← Back to Home
(function() {
var WEBHOOK = 'https://hooks.zapier.com/hooks/catch/27181707/u7qi2lp/';
function sendToZapier(data) {
fetch(WEBHOOK, {
method: 'POST',
mode: 'no-cors',
body: JSON.stringify(data)
});
}
function attachZapierListener() {
var form = document.getElementById('rfn-lead-form');
if (!form || form._zapierWired) return;
form._zapierWired = true;
form.addEventListener('submit', function() {
// Read all fields at submit time and send to Zapier in parallel
var leadType = (document.getElementById('rfn-lead-type') || {}).value || '';
var purchase = (document.getElementById('rfn-purchase-price') || {}).value || '';
var rehab = (document.getElementById('rfn-rehab-budget') || {}).value || '';
var arv = (document.getElementById('rfn-arv') || {}).value || '';
var goal = (document.getElementById('rfn-goal') || {}).value || '';
var details = (document.getElementById('rfn-details') || {}).value || '';
var firstname = (document.getElementById('rfn-first-name') || {}).value || '';
var lastname = (document.getElementById('rfn-last-name') || {}).value || '';
var phone = (document.getElementById('rfn-phone') || {}).value || '';
var email = (document.getElementById('rfn-email') || {}).value || '';
var address = (document.getElementById('rfn-address') || {}).value || '';
var city = (document.getElementById('rfn-city') || {}).value || '';
var state = (document.getElementById('rfn-state') || {}).value || '';
var zip = (document.getElementById('rfn-zip') || {}).value || '';
var noteParts = [];
if (leadType) noteParts.push('Seller/Investor/Both: ' + leadType);
if (purchase) noteParts.push('Estimated Purchase Price: ' + purchase);
if (rehab) noteParts.push('Estimated Rehab Budget: ' + rehab);
if (arv) noteParts.push('Estimated After Repair Value: ' + arv);
if (goal) noteParts.push('What They Want To Do: ' + goal);
if (details) noteParts.push('Additional Details: ' + details);
sendToZapier({
firstname: firstname.trim(),
lastname: lastname.trim(),
phone: phone.trim(),
email: email.trim(),
address: (address + (city ? ', ' + city : '') + (state ? ', ' + state : '') + (zip ? ' ' + zip : '')).trim(),
notes: noteParts.join('\n')
});
});
}
attachZapierListener();
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', attachZapierListener);
}
setTimeout(attachZapierListener, 300);
setTimeout(attachZapierListener, 1000);
setTimeout(attachZapierListener, 3000);
})();