Skip nav to main content.
Mobile App
Find it for free on the App Store.
Get The App
Mobile App
Find it for free on the App Store.
Get The App
Credit Union of Georgia logo Credit Union of Georgia - Homepage

Test application

Monthly Payment
Property Tax: 167
Homeowners Insurance: 100
HOA Fee: 0
Mortgage Insurance: 167
Mortgage Amount
$
$
Fixed Rate
%
Term Years
Advanced Options

let home_value = document.URL.match(/hv=([^&#]*)/)[1];
let credit_score = document.URL.match(/cs=([^&#]*)/)[1];
let loan_term = document.URL.match(/Lt=([^&#]*)/)[1];
let down_payment = document.URL.match(/dp=([^&#]*)/)[1];
$(‘.input-amount.calc-input’)[0].value = home_value;
$(‘.input-down-payment’)[0].value = down_payment;
$(‘.input-rate’)[0].value = credit_score;
$(‘.input-term’)[0].value = loan_term;