jQuery(document).ready(function () { var useGlobal = false; var htmlContents = '
Sending message...
CONTACT US
Thank you!

We will get back to you shortly


new 2025 Genesis
G70 2.5T SPORT PRESTIGE AWD
Lease for Only
$449/MO
For 36 Months
for 36 Months | $3,999 Due at Signing
*Disclaimer Click Here

36 months, 10,000 miles/y. Tax Title, reg. doc. additional. (doc fee $499, reg fee $170 and first months payment) Extra charges may apply at lease end. Call for details. $50,630 MSRP incl. Residency restrictions apply. Stock QG2159, QG2156, QG2157 By submitting you agree to our Terms and Conditions. With approved credit incentives. See dealer for details. Subject to program change without notice. $499 documentation fee not included in final price. Security deposit not required. Sale ends 7-31-2025.

Lease for Only
$519/MO
For 36 Months
w/ tax for 36 Months | $4,999 Due at Signing
*Disclaimer Click Here

36 months, 10,000 miles/y. Tax Title, reg. doc. additional. (doc fee $499, reg fee $170 and first months payment) Extra charges may apply at lease end. Call for details. $47,920 MSRP incl. Residency restrictions apply. Stock #QG2277,QG2551, QG2635 By submitting you agree to our Terms and Conditions. With approved credit incentives. See dealer for details. Subject to program change without notice. $499 documentation fee not included in final price. Security deposit not required. Sale ends 7-31-2025.

new 2025 Genesis
GV70 Electrified Prestige AWD
Lease for Only
$539/MO
For 36 Months
for 33 Months $5,999 Due at Signing
*Disclaimer Click Here

24 months, 12,000 miles/y. Tax Title, reg. doc. additional. doc fee $499, reg fee $170 and first months payment) Extra charges may apply at lease end. Call for details.$69,990 MSRP incl Residency restrictions apply. Stock #QG2060, QG2062, QG2342 By submitting you agree to our Terms and Conditions. With approved credit incentives. See dealer for details. Subject to program change without notice. $499 documentation fee not included in final price. Security deposit not required. Sale ends 7-31-2025.

new 2025 Genesis
GV80 2.5T Standard AWD
Lease for Only
$589/MO
For 36 Months
w/ tax for 36 Months | $5,999 Due at Signing
*Disclaimer Click Here

36 months, 10,000 miles/y. Tax Title, acq., reg. doc. additional. (doc fee $499, reg fee $170 and first months payment) Extra charges may apply at lease end. Call for details. $60,840 MSRP incl Residency restrictions apply. Stock QG2179, QG2178, QG2180 By submitting you agree to our Terms and Conditions. With approved credit incentives. See dealer for details. Subject to program change without notice. $499 documentation fee not included in final price. Security deposit not required. Sale ends 7-31-2025

.
new 2025 Genesis
G80 2.5T Advanced AWD
Lease for Only
$589/MO
For 36 Months
For 36 Months | $4,999 Down
36 months, 10,000 miles/y. Title, reg. doc. additional. doc fee $499, reg fee $170 and first months payment) Extra charges may apply at lease end. Call for details. Residency restrictions apply. Stock #QG2313, QG2328, QG2610 By submitting you agree to our Terms and Conditions. With approved credit incentives. See dealer for details. Subject to program change without notice. $499 documentation fee not included in final price. Security deposit not required. Sale ends 7-31-2025.
Lease for Only
$389/MO
For 36 Months
w/ tax for 33 Months | $5,999 Due at Signing
*Disclaimer Click Here 33 months, 12,000 miles/y. Tax Title, reg. doc. additional. (doc fee $499, reg fee $170 and first months payment) Extra charges may apply at lease end. Call for details. $58,565 MSRP incl Residency restrictions apply. Stock QG2040, QG2097, QG2102 By submitting you agree to our Terms and Conditions. With approved credit incentives. See dealer for details. Subject to program change without notice. $499 documentation fee not included in final price. Security deposit not required. Sale ends 7-31-2025.
'; if (useGlobal) { var container = $("img[alt='incentive-container']").closest(".widget-image"); if (container.length) { container.parent().prepend("
") container.remove(); $('.incentivesContainer').html(htmlContents); } else { $("#webspecials-global").addClass("incentivesContainer"); $("#webspecials-global").html(htmlContents); } } else { $("#webspecials").html(htmlContents); } $(".contact-form #specialsContactForm input").blur(function () { $(this).removeClass("hasErrors"); }) }); function validateEmail(email) { var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; return re.test(email); } function showContactForm(specialId) { $('.contact-form #specialId').val(specialId); $('.contact-form').fadeIn(); } function closeForm() { $(".contact-form #specialsContactForm input").removeClass("hasErrors"); $(".contact-form .messages .errors").html(""); $('.contact-form .sending').hide(); $('.contact-form .thanks').hide(); $('.contact-form .message').hide(); $('.contact-form').fadeOut(); $(".contact-form #specialsContactForm").get(0).reset(); setTimeout(function () { $('.contact-form .controls').show(); $(".contact-form .contactFormTitle").show(); }, 1000); } function sendData() { $(".contact-form #specialsContactForm input").removeClass("hasErrors"); $(".contact-form .messages .errors").html(""); var hasErrors = false; if (!$(".contact-form #specialsContactForm #first_name").val()) { $(".contact-form #specialsContactForm #first_name").addClass("hasErrors"); hasErrors = true; } if (!$(".contact-form #specialsContactForm #last_name").val()) { $(".contact-form #specialsContactForm #last_name").addClass("hasErrors"); hasErrors = true; } if (!$(".contact-form #specialsContactForm #email").val()) { $(".contact-form #specialsContactForm #email").addClass("hasErrors"); hasErrors = true; } if (hasErrors) { $(".contact-form .messages .errors").html("Please complete all required fields"); alert("Please complete all required fields"); return; } if (!validateEmail($(".contact-form #specialsContactForm #email").val())) { $(".contact-form #specialsContactForm #email").addClass("hasErrors"); $(".contact-form .messages .errors").html("Please enter a valid email address"); alert("Please enter a valid email address"); return; } $(".contact-form .sending").fadeIn(); $.ajax({ type: "POST", url: "https://api.quirkspecials.com/v2/api/specials/emailLead", data: $(".contact-form #specialsContactForm").serialize(), success: function (response) { $(".contact-form #specialsContactForm").get(0).reset(); $(".contact-form .sending").fadeOut(); $(".contact-form .contactFormTitle").hide(); $('.contact-form .controls').hide(); $(".contact-form .thanks").show(); }, error: function (response) { $(".contact-form .sending").fadeOut(); alert("We can't send your message right now, please try again later"); } }); }