(function () {
if (window.location.pathname.replace(/\/+$/, '') !== '/quote') return;var conversionSent = false;function checkForCompletedQuote() {
if (conversionSent || !document.body) return;if (document.body.innerText.indexOf('Your Free Quote is Ready!') !== -1) {
conversionSent = true;if (typeof gtag === 'function') {
gtag('event', 'ads_conversion_request_quote');
}
}
}checkForCompletedQuote();new MutationObserver(checkForCompletedQuote).observe(document.body, {
childList: true,
subtree: true
});
})();