/* eslint-disable */ (function () { let source, isMicroSite, activationStatus, enterpriseNumber; let secondIframeLoaded = false, onceClickedOnSecFrame = false, windowIframeBody; try { if ( window && window.parent && window.parent.__INITIAL_STATE__ && window.parent.__INITIAL_STATE__.homeReducer && window.parent.__INITIAL_STATE__.homeReducer.data ) { let homeReducerData = window.parent.__INITIAL_STATE__.homeReducer.data; isMicroSite = true; //ask microsite enterpriseNumber = homeReducerData.enterpriseInfo ? homeReducerData.enterpriseInfo.businessNumber : homeReducerData.businessNumber; source = 6; activationStatus = homeReducerData.activationStatus; //var businessName = homeReducerData.name; } } catch (e) { log(e); } if (!document.getElementsByClassName) { document.getElementsByClassName = function (className) { return this.querySelectorAll("." + className); }; Element.prototype.getElementsByClassName = document.getElementsByClassName; } const CONSIDER_MIN_WIDTH = { "https://grabercustomstructures.com" : true } let bfi; let totalWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; if (CONSIDER_MIN_WIDTH[window?.origin]) { let widths = [ window.innerWidth, document.documentElement?.clientWidth, document.body?.clientWidth ].filter(Boolean); // Removes undefined or falsy values totalWidth = Math.min(...widths); } let totalHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight; let tries = 1; let extensionInterval; let env; let windowIframe; window.be_webchat = null; function playBubbleSound() { let context, source = "https://d3cnqzq0ivprch.cloudfront.net/prod/media/notification-sound.mp3"; try { window.AudioContext = window.AudioContext || window.webkitAudioContext; context = new AudioContext(); let request = new XMLHttpRequest(); request.open("GET", source, true); request.responseType = "arraybuffer"; request.onload = function () { context.decodeAudioData( request.response, function (buffer) { let source = context.createBufferSource(); source.buffer = buffer; source.connect(context.destination); source.start(0); context.resume(); }, function (e) { console.log("error", e); } ); }; request.send(); } catch (e) { if (/Edge\/|Trident\/|MSIE /.test(navigator.userAgent)) { let audio = document.createElement("audio"); audio.autoplay = true; audio.src = source; audio.play(); } } } function checkIsAgentPreview (isPreview, widgetAgent) { return (isPreview === 1 || isPreview === "1") && widgetAgent.length > 0; }; function getGoodBot(type) { const goodBots = [ "facebookexternalhit", "Facebot", "Googlebot", "Google", "LinkedInBot", ]; const ua = navigator.userAgent; let isGoodBots = false; let botName = ""; for (let i = 0; i < goodBots.length; i++) { const bot = goodBots[i]; if (ua.indexOf(bot) > -1) { isGoodBots = true; botName = bot.toLowerCase(); break; } } if (type == "isGoodBot") { return isGoodBots; } else { botName = botName != "" ? botName : "facebook"; botName = botName.indexOf("face") > -1 ? "facebook" : botName; botName = botName.indexOf("linked") > -1 ? "linked-in" : botName; return botName; } } function initIframe() { let bfdiv = document.getElementById("bf-revz-widget-" + window.wid) || document.getElementById("bf-revz-widget-" + "0" + window.wid); if (!bfdiv) { tries++; if (tries > 50) { return false; } setTimeout(initIframe, 500); return; } if (!bfdiv.firstChild) { bfdiv.appendChild(bfi); } else if (bfdiv.firstChild && bfdiv.firstChild.nodeName != "IFRAME") { bfdiv.insertBefore(bfi, bfdiv.firstChild); } } let winHeight = 100; let winWidth = "431px"; if (window.innerHeight < 100) { winHeight = window.innerHeight; } if (CONSIDER_MIN_WIDTH[window?.origin]) { if (totalWidth < 500) { winWidth = "100%"; } } else { if (window.innerWidth < 500) { winWidth = "100%"; } } window.addEventListener("resize", function () { if (window.innerHeight < 727) { winHeight = window.innerHeight; } else { winHeight = 773; } }); const openWebchatFromOutside = (objFromClient) => { const firstIframe = document.getElementById("bewebchat"); const secondIframe = document.getElementById("window-iframe"); firstIframe.contentWindow.postMessage( { type: "post-message-from-outside", clientObj: objFromClient, beWebchatWindowObj: JSON.stringify(window.be_webchat), isWidgetAlignLeft: window.isWidgetAlignLeft, mFullView: window.mFullView, isPreview: window.isPreview, widgetAgent: JSON.stringify(window.widgetAgent), draftSessionId: window.draftSessionId }, "*" ); secondIframe.contentWindow.postMessage( { type: "post-message-from-outside-chat", clientObj: objFromClient, beWebchatWindowObj: JSON.stringify(window.be_webchat), isWidgetAlignLeft: window.isWidgetAlignLeft, locale: window.locale, mFullView: window.mFullView, isPreview: window.isPreview, widgetAgent: JSON.stringify(window.widgetAgent), draftSessionId: window.draftSessionId }, "*" ); }; window.onmessage = function (e) { if (e.data && e.data.split) { const isAgentPreview = checkIsAgentPreview(window.isPreview, window.widgetAgent); let dataReceivedSplit = e.data.split("***"); let dataReceived = dataReceivedSplit[0]; let widthReceived = dataReceivedSplit[1]; if (totalWidth < 960) { widthReceived = "drawer"; } if (dataReceived == "icon-clicked") { if (!secondIframeLoaded) { if (!onceClickedOnSecFrame) { loadNewIframe(); } } document.getElementById("bewebchat").style.height = isAgentPreview ? "70px" : "80px"; document.getElementById("bewebchat").style.width = isAgentPreview ? "200px" : "70px"; if (widthReceived == "floating") { document .getElementById("window-iframe") .setAttribute( "style", `-webkit-overflow-scrolling: touch; visibility: visible; opacity: 1; ${window.isWidgetAlignLeft ? "left:20px" : "right:20px"}; bottom:${isAgentPreview ? "0" : "20px"}; position:fixed; overflow:hidden; width:${winWidth}; z-index:9999998; border: 0; height: ${(isAgentPreview ? 90 : winHeight) + "%"}; ` ); } else { document .getElementById("window-iframe") .setAttribute( "style", `-webkit-overflow-scrolling: touch; visibility: visible; opacity: 1; z-index: 9999999; ${window.isWidgetAlignLeft ? "left:0px" : "right:0px"}; bottom:0px; position:fixed; overflow:hidden; width:${winWidth}; height: 100%; border: 0;` ); } window.be_webchat = { ...window.be_webchat, windowOpened: true, }; if(isAgentPreview) { window.dispatchEvent(new CustomEvent("webchat:opened", { detail: true })); } } else if (dataReceived == "icon-closed") { let wid = "20px"; if (totalWidth < 960) { wid = "20px"; } let element = document.getElementById("window-iframe"); element.style.height = 0; secondIframeLoaded = false; window.be_webchat = { ...window.be_webchat, windowOpened: false, }; if(isAgentPreview){ window.dispatchEvent(new CustomEvent("webchat:closed", { detail: false })); } } else if (dataReceived == "getwidth") { e.source.postMessage( { width: totalWidth, height: totalHeight, src: "birdeye", updateValFromParent: window.update, }, "*" ); } else if (dataReceived == "show-bubble") { bfi.setAttribute( "style", `-webkit-overflow-scrolling: touch; visibility: ${isAgentPreview ? "hidden" : "visible"}; opacity: 1; z-index: 9999999; ${window.isWidgetAlignLeft ? "left:20px" : "right:20px"}; bottom:20px; position:fixed; overflow:hidden; ${isAgentPreview ? "width:200px" : "width:340px"}; ${isAgentPreview ? "height:70px" : "height:227px"}; border: 0;` ); } else if (dataReceived == "hide-bubble") { bfi.setAttribute( "style", `-webkit-overflow-scrolling: touch; visibility: ${isAgentPreview ? "hidden" : "visible"}; opacity: 1; z-index: 9999999; ${window.isWidgetAlignLeft ? "left:20px" : "right:20px"}; bottom:20px; position:fixed; overflow:hidden; ${isAgentPreview ? "width:200px" : "width:70px"}; ${isAgentPreview ? "height:70px" : "height:80px"}; border: 0;` ); } else if (dataReceived == "get-parent-url") { if (!window.be_webchat) { window.be_webchat = { open: openWebchatFromOutside, }; } e.source.postMessage( { type: "put-parent-url", url: document.location.href, hostname: document.location.hostname, href: document.location.origin, src: "birdeye", isMicroSite: isMicroSite ? isMicroSite : false, frmMicrosite: frmMicrosite ? frmMicrosite : false, isWidgetAlignLeft: window.isWidgetAlignLeft ? window.isWidgetAlignLeft : false, mFullView: window.mFullView ? window.mFullView : false, enterpriseNumber: isMicroSite ? enterpriseNumber : null, width: totalWidth, height: totalHeight, src: "birdeye", updateValFromParent: window.update, bizDataResp: window.bizDataResp, beWebchatWindowObj: JSON.stringify(window.be_webchat), updatedBizData: true, locale: window.locale, isPreview: window.isPreview ? window.isPreview : 0, widgetAgent: window.widgetAgent ? window.widgetAgent : "", draftSessionId: window.draftSessionId }, "*" ); } else if ( dataReceived == "push-datalayer" && window && typeof window.dataLayer !== "undefined" ) { window.dataLayer.push(JSON.parse(dataReceivedSplit[1])); } else if ( dataReceived == "push-avbDatalayer" && window && typeof window.avbData !== "undefined" ) { window.avbData.push(JSON.parse(dataReceivedSplit[1])); } else if (dataReceived == "push-analytics") { try { try { const config = JSON.parse(dataReceivedSplit[1]); switch (config.googleAnalyticsVersion) { case "UA": if (ga && typeof ga == "function") { const nonInteractionObj = config.nonInteraction ? { nonInteraction: 1 } : null; ga( "send", "event", "webchat", config.action, config.actionLabel, nonInteractionObj ); } else { console.warn( "Webchat Analytics ReferenceError: ga is not defined" ); } break; case "GST": if (gtag && typeof gtag == "function") { const nonInteractionObj = config.nonInteraction ? { non_interaction: true } : {}; gtag("event", config.action, { event_category: "webchat", event_label: config.actionLabel.trim(), value: 1, ...nonInteractionObj, }); } else { console.warn( "Webchat Analytics ReferenceError: gtag is not defined" ); } break; } } catch (e) { console.warn("Webchat Analytics", e); } } catch (e) { console.warn("Webchat Analytics", e); } } else if (dataReceived == "be-custom-event-fire") { const customEventData = JSON.parse(dataReceivedSplit[1]); const be_event = new CustomEvent("beWebchatCustomEvent", { detail: customEventData, }); window.parent.document.dispatchEvent(be_event); } else if (dataReceived == "bubble-icon-sound") { playBubbleSound(); } } }; if (document.readyState === "complete") { extensionInterval = setInterval(function () { env = window.envObj ? window.envObj : {}; const bizResp = window.bizDataResp ? window.bizDataResp : {}; const locationListLen = bizResp ? bizResp["businessLocations"] && bizResp["businessLocations"].length : 0; if (Object.keys(env).length && locationListLen > 0) { getFirstIframeAndInit(env); } }, 100); } else { if (window.addEventListener) { // DOM2 standard window.addEventListener("load", windowOnloadHandler, false); } else if (window.attachEvent) { // Microsoft's precursor to it, IE8 and earlier window.attachEvent("onload", windowOnloadHandler); } else { // Some pre-1999 browser window.onload = windowOnloadHandler; } function windowOnloadHandler() { env = window.envObj ? window.envObj : {}; const bizResp = window.bizDataResp ? window.bizDataResp : {}; const locationListLen = bizResp ? bizResp["businessLocations"] && bizResp["businessLocations"].length : 0; if (locationListLen > 0) { getFirstIframeAndInit(env); } } } function getFirstIframeAndInit(env) { extensionInterval && clearInterval(extensionInterval); const isAgentPreview = checkIsAgentPreview(window.isPreview, window.widgetAgent); bfi = document.createElement("iframe"); bfi.name = "bfiframe"; bfi.id = "bewebchat"; bfi.loading = "lazy"; bfi.title = "Webchat widget"; bfi.src = env.protocol + env.domain + `/getBubbleContent?update=${window.update}&source=${window.source}&bNum=${window.bNum}&apikey=${window.apikey}&widgetApiVersion=${window.widgetApiVersion}&isWidgetAlignLeft=${window.isWidgetAlignLeft}&mFullView=${window.mFullView}&isPreview=${window.isPreview}&widgetAgent=${window.widgetAgent}&draftSessionId=${draftSessionId}`; bfi.setAttribute( "style", `-webkit-overflow-scrolling: touch; visibility: ${isAgentPreview ? "hidden" : "visible"}; opacity: 1; z-index: 9999999; ${window.isWidgetAlignLeft ? "left:20px" : "right:20px"}; bottom:20px; position:fixed; overflow:hidden; ${isAgentPreview ? "width:200px" : "width:70px"}; ${isAgentPreview ? "height:70px" : "height:80px"}; border:0` ); initIframe(); bfi.onload = loadNewIframe.bind(this); const firstIframeEl = document.getElementById("bewebchat"); firstIframeEl.style.colorScheme = "light"; } function appendSecondIframe() { secondIframeLoaded = true; onceClickedOnSecFrame = true; let bfdiv = document.getElementById("bf-revz-widget-" + window.wid) || document.getElementById("bf-revz-widget-" + "0" + window.wid); bfdiv.appendChild(windowIframe); const bodyEl = document.querySelector("#window-iframe").parentElement .parentElement; windowIframeBody = document.querySelector("#window-iframe") .contentDocument ? document.querySelector("#window-iframe").contentDocument.body : null; bodyEl.addEventListener("click", function (e) { let emojiEl = windowIframeBody && windowIframeBody.querySelector(".emoji-wrap"); if ( emojiEl && e.target !== document.querySelector("#window-iframe") ) { emojiEl.classList.add("hide-emoji"); emojiEl.style.display = "none"; } }); const secondIframeEl = document.getElementById("window-iframe"); secondIframeEl.style.colorScheme = "light"; } function loadNewIframe() { windowIframe = document.createElement("iframe"); windowIframe.name = "wciframe"; windowIframe.id = "window-iframe"; windowIframe.loading = "lazy"; windowIframe.title = "Webchat widget"; windowIframe.src = env.protocol + env.domain + `/getChatWindowContent?emailRequired=${window.emailRequired}&bNum=${window.bNum}&mobileRequired=${window.mobileRequired}&defaultCountryCode=${window.defaultCountryCode}&apikey=${window.apikey}&widgetApiVersion=${window.widgetApiVersion}&isMicroSite=${window.isMicroSite}&activationStatus=${window.activationStatus}&isWidgetAlignLeft=${window.isWidgetAlignLeft}&mFullView=${window.mFullView}&isPreview=${window.isPreview}&widgetAgent=${window.widgetAgent}&draftSessionId=${draftSessionId}`; windowIframe.setAttribute( "style", `-webkit-overflow-scrolling: touch; visibility: visible; opacity: 1; ${window.isWidgetAlignLeft ? "left:20px" : "right:20px"}; bottom:20px; position:fixed; overflow:hidden; width:346px; z-index:9999998; border: 0; height: 0px;` ); appendSecondIframe(); } })(); var wid = 3222559315; var update = 0; var soundOff = 1; var envObj = {"domain":"webchat.birdeye.com","protocol":"https://","isWidgetAlignLeft":false,"mFullView":false,"isPreview":0,"widgetAgent":""}; var emailRequired = 0; var isPreview = 0; var widgetAgent = ""; var defaultCountryCode = 0; var mobileRequired = 1; var apikey = "e62df419df9292886a29b0281c7ee453f93d347d46a9b7d8"; var widgetApiVersion = 2; var bNum = 172095; var update = 0; var isMicroSite = false; var frmMicrosite = false; var isWidgetAlignLeft = false; var mFullView = false; var activationStatus = false; var source = false; var bizDataResp = {"businessId":168616611087272,"chatTheme":"floating","chatIcon":"twocolored","chatIconValue":null,"bannerColor":"#F8F8F8","bannerTextColor":"#000000","btnColor":"#1976D2","btnTxtColor":"#FFFFFF","enableReplyInBusinessHr":1,"enableReplyPostBusinessHr":1,"autoReplyTxt":"Thank you for contacting Pride Cleaners! Someone from our team will reach out shortly.","replyTextPostBusinessHr":"Thank you for contacting us! We are currently out of business hours, but we’ll get back to you as soon as we can.","headerHeadline":"Hi there!","headerDescription":"Questions? We are here to help! Send us a message below.","thankyouMsgHeadline":null,"thankyouMsgDescription":null,"webChatOnlineClosingMessageHeader":"We will text you !","webChatOnlineClosingMessageBody":"We will follow up with you soon. You can always text us at [Business Phone] ","apiKey":null,"businessDomain":null,"onlineClosingMessageBody":null,"onlineWelcomeMessageHeader":null,"smb":false,"popupInterval":5,"microsite":0,"userProfile":[{"userProfileName":"","userProfileImage":""}],"businessLocations":[{"businessId":169713564920221,"location":"Blue Springs, MO","businessSMSPhoneNumber":"(816) 203-0205","countryCode":"US","zipcode":"64015","address1":"709 NW Vesper St","address2":"","chatEnabled":true,"shortBusinessId":1194931,"businessAlias":"Pride Cleaners - Blue Springs","businessName":"Pride Cleaners - Blue Springs","name":"Pride Cleaners - Blue Springs","city":"Blue Springs","state":"MO","locationName":"Pride Cleaners - Blue Springs","latitude":39.02079478,"longitude":-94.27400209,"emailId":"pride@pridecleaners.com","phone":"(816) 622-2733"},{"businessId":169713560861161,"location":"Bonner Springs, KS","businessSMSPhoneNumber":"(913) 357-6543","countryCode":"US","zipcode":"66012","address1":"13029 Kansas Ave","address2":"","chatEnabled":true,"shortBusinessId":1194904,"businessAlias":"Pride Cleaners - Bonner Springs","businessName":"Pride Cleaners - Bonner Springs","name":"Pride Cleaners - Bonner Springs","city":"Bonner Springs","state":"KS","locationName":"Pride Cleaners - Bonner Springs","latitude":39.085514,"longitude":-94.88315,"emailId":"pride@pridecleaners.com","phone":"(913) 745-4069"},{"businessId":169713566678386,"location":"Fairway, KS","businessSMSPhoneNumber":"(913) 380-8312","countryCode":"US","zipcode":"66205","address1":"2716 W 53rd St","address2":"","chatEnabled":true,"shortBusinessId":1194943,"businessAlias":"Pride Cleaners - Fairway","businessName":"Pride Cleaners - Fairway","name":"Pride Cleaners - Fairway","city":"Fairway","state":"KS","locationName":"Pride Cleaners - Fairway","latitude":39.03361498,"longitude":-94.61729,"emailId":"pride@pridecleaners.com","phone":"(913) 722-1149"},{"businessId":169713565066957,"location":"Grandview, MO","businessSMSPhoneNumber":"(913) 395-8446","countryCode":"US","zipcode":"64030","address1":"13613 S. US 71 HWY","address2":"","chatEnabled":true,"shortBusinessId":1194932,"businessAlias":"Pride Cleaners - Grandview","businessName":"Pride Cleaners - Grandview","name":"Pride Cleaners - Grandview","city":"Grandview","state":"MO","locationName":"Pride Cleaners - Grandview","latitude":38.88011019,"longitude":-94.5263288,"emailId":"pride@pridecleaners.com","phone":"(913) 633-3021"},{"businessId":169713560698114,"location":"Harrisonville, MO","businessSMSPhoneNumber":"(816) 208-8716","countryCode":"US","zipcode":"64701","address1":"646 S Commercial St","address2":"","chatEnabled":true,"shortBusinessId":1194903,"businessAlias":"Pride Cleaners - Harrisonville","businessName":"Pride Cleaners - Harrisonville","name":"Pride Cleaners - Harrisonville","city":"Harrisonville","state":"MO","locationName":"Pride Cleaners - Harrisonville","latitude":38.65220999,"longitude":-94.35993,"emailId":"pride@pridecleaners.com","phone":"(816) 884-2005"},{"businessId":168616613113314,"location":"Kansas City, KS","businessSMSPhoneNumber":"(816) 670-2791","countryCode":"US","zipcode":"66103","address1":"1919 W 43rd Ave","address2":"","chatEnabled":true,"shortBusinessId":1124383,"businessAlias":"Pride Cleaners - Westport","businessName":"Pride Cleaners - Westport","name":"Pride Cleaners - Westport","city":"Kansas City","state":"KS","locationName":"Pride Cleaners - Westport","latitude":39.049923,"longitude":-94.60832,"emailId":"pride@pridecleaners.com","phone":"(816) 753-7494"},{"businessId":169713563375989,"location":"Kansas City, MO - 1251 W 103rd St","businessSMSPhoneNumber":"(816) 494-2105","countryCode":"US","zipcode":"64114","address1":"1251 W 103rd St","address2":"","chatEnabled":true,"shortBusinessId":1194921,"businessAlias":"Pride Cleaners - Watts Mill","businessName":"Pride Cleaners - Watts Mill","name":"Pride Cleaners - Watts Mill","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Watts Mill","latitude":38.9412242,"longitude":-94.6071899,"emailId":"pride@pridecleaners.com","phone":"(816) 605-1291"},{"businessId":169713562643702,"location":"Kansas City, MO - 4970 Main St","businessSMSPhoneNumber":"(816) 992-5971","countryCode":"US","zipcode":"64112","address1":"4970 Main St","address2":"","chatEnabled":true,"shortBusinessId":1194916,"businessAlias":"Pride Cleaners - Main St","businessName":"Pride Cleaners - Main St","name":"Pride Cleaners - Main St","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Main St","latitude":39.0369328,"longitude":-94.5874925,"emailId":"pride@pridecleaners.com","phone":"(816) 442-8561"},{"businessId":169713563085909,"location":"Kansas City, MO - 524 W 75th St","businessSMSPhoneNumber":"(816) 675-4332","countryCode":"US","zipcode":"64114","address1":"524 W 75th St","address2":"","chatEnabled":true,"shortBusinessId":1194919,"businessAlias":"Pride Cleaners - Waldo","businessName":"Pride Cleaners - Waldo","name":"Pride Cleaners - Waldo","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Waldo","latitude":38.99265479,"longitude":-94.5963474,"emailId":"pride@pridecleaners.com","phone":"(816) 894-8300"},{"businessId":169713561462142,"location":"Kansas City, MO - 6024 NE Antioch Rd","businessSMSPhoneNumber":"(816) 325-3765","countryCode":"US","zipcode":"64119","address1":"6024 NE Antioch Rd","address2":"","chatEnabled":true,"shortBusinessId":1194908,"businessAlias":"Pride Cleaners - Gladstone","businessName":"Pride Cleaners","name":"Pride Cleaners","city":"Kansas City","state":"MO","locationName":"Pride Cleaners","latitude":39.203407,"longitude":-94.55039,"emailId":"pride@pridecleaners.com","phone":"(816) 298-1139"},{"businessId":169713562937399,"location":"Kansas City, MO - 6240 Main St","businessSMSPhoneNumber":"(816) 608-6791","countryCode":"US","zipcode":"64113","address1":"6240 Main St","address2":"","chatEnabled":true,"shortBusinessId":1194918,"businessAlias":"Pride Cleaners - Brookside","businessName":"Pride Cleaners - Brookside","name":"Pride Cleaners - Brookside","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Brookside","latitude":39.0144601,"longitude":-94.5885819,"emailId":"pride@pridecleaners.com","phone":"(816) 822-1605"},{"businessId":169713561608552,"location":"Kansas City, MO - 6507 N. Cosby Avenue","businessSMSPhoneNumber":"(816) 597-4313","countryCode":"US","zipcode":"64151","address1":"6507 N. Cosby Avenue","address2":"","chatEnabled":true,"shortBusinessId":1194909,"businessAlias":"Pride Cleaners - Picture Hills","businessName":"Pride Cleaners - Picture Hills","name":"Pride Cleaners - Picture Hills","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Picture Hills","latitude":39.2136439,"longitude":-94.6460413,"emailId":"pride@pridecleaners.com","phone":"(816) 741-6342"},{"businessId":169713562350272,"location":"Kansas City, MO - 850 W Blue Ridge Blvd","businessSMSPhoneNumber":"(816) 750-5971","countryCode":"US","zipcode":"64145","address1":"850 W Blue Ridge Blvd","address2":"","chatEnabled":true,"shortBusinessId":1194914,"businessAlias":"Pride Cleaners - Blue Ridge","businessName":"Pride Cleaners - Blue Ridge","name":"Pride Cleaners - Blue Ridge","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Blue Ridge","latitude":38.8912373,"longitude":-94.6060703,"emailId":"pride@pridecleaners.com","phone":"(816) 569-6984"},{"businessId":169713561758527,"location":"Kansas City, MO - 8700 Ambassador Drive","businessSMSPhoneNumber":"(816) 439-8179","countryCode":"US","zipcode":"64154","address1":"8700 Ambassador Drive","address2":"","chatEnabled":true,"shortBusinessId":1194910,"businessAlias":"Pride Cleaners - Ambassador","businessName":"Pride Cleaners - Ambassador","name":"Pride Cleaners - Ambassador","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Ambassador","latitude":39.2513176,"longitude":-94.6501406,"emailId":"pride@pridecleaners.com","phone":"(816) 505-1048"},{"businessId":169713566847202,"location":"Kansas City, MO - 8704 NE Flintlock Rd","businessSMSPhoneNumber":"(816) 408-3547","countryCode":"US","zipcode":"64158","address1":"8704 NE Flintlock Rd","address2":"","chatEnabled":true,"shortBusinessId":1194944,"businessAlias":"Pride Cleaners - Shoal Creek","businessName":"Pride Cleaners - Shoal Creek","name":"Pride Cleaners - Shoal Creek","city":"Kansas City","state":"MO","locationName":"Pride Cleaners - Shoal Creek","latitude":39.247856,"longitude":-94.46584,"emailId":"pride@pridecleaners.com","phone":"(816) 415-0245"},{"businessId":174612514971265,"location":"Kansas City, MO - 9586 N McGee St","businessSMSPhoneNumber":"(562) 516-0473","countryCode":"US","zipcode":"64155","address1":"9586 N McGee St","address2":"","chatEnabled":true,"shortBusinessId":1532950,"businessName":"Pride Cleaners North Oak","name":"Pride Cleaners North Oak","city":"Kansas City","state":"MO","locationName":"Pride Cleaners North Oak","latitude":39.2668372,"longitude":-94.5773899,"emailId":"","phone":"(816) 214-5779"},{"businessId":169713565214313,"location":"Kearney, MO","businessSMSPhoneNumber":"(816) 327-2317","countryCode":"US","zipcode":"64060","address1":"101State Rte 92","address2":"","chatEnabled":true,"shortBusinessId":1194933,"businessAlias":"Pride Cleaners - Kearney","businessName":"Pride Cleaners - Kearney","name":"Pride Cleaners - Kearney","city":"Kearney","state":"MO","locationName":"Pride Cleaners - Kearney","latitude":39.36731,"longitude":-94.36275,"emailId":"pride@pridecleaners.com","phone":"(816) 903-3646"},{"businessId":175044345405596,"location":"Lansing, KS","businessSMSPhoneNumber":"(913) 430-1308","countryCode":"US","zipcode":"66043","address1":"812 N Main St","address2":"","chatEnabled":true,"shortBusinessId":1565109,"businessName":"Pride Cleaners Lansing","name":"Pride Cleaners Lansing","city":"Lansing","state":"KS","locationName":"Pride Cleaners Lansing","latitude":39.262079,"longitude":-94.8992909,"emailId":"","phone":"(913) 250-5289"},{"businessId":169713565507651,"location":"Leawood, KS","businessSMSPhoneNumber":"(913) 675-6230","countryCode":"US","zipcode":"66209","address1":"12242 State Line Road","address2":"","chatEnabled":true,"shortBusinessId":1194935,"businessAlias":"Pride Cleaners - Leawood Plaza","businessName":"Pride Cleaners - Leawood Plaza","name":"Pride Cleaners - Leawood Plaza","city":"Leawood","state":"KS","locationName":"Pride Cleaners - Leawood Plaza","latitude":38.906402,"longitude":-94.609271,"emailId":"pride@pridecleaners.com","phone":"(913) 345-1607"},{"businessId":169713561316707,"location":"Lee's Summit, MO - 121 SE MO Hwy 291 N","businessSMSPhoneNumber":"(816) 846-2167","countryCode":"US","zipcode":"64063","address1":"121 SE MO Hwy 291 N","address2":"","chatEnabled":true,"shortBusinessId":1194907,"businessAlias":"Pride Cleaners - 291 Hwy","businessName":"Pride Cleaners - 291 Hwy Lee's Summit","name":"Pride Cleaners - 291 Hwy Lee's Summit","city":"Lee's Summit","state":"MO","locationName":"Pride Cleaners - 291 Hwy Lee's Summit","latitude":38.9155614,"longitude":-94.360808,"emailId":"pride@pridecleaners.com","phone":"(816) 246-2180"},{"businessId":169713563727763,"location":"Lee's Summit, MO - 3735 SW Hollywood Dr","businessSMSPhoneNumber":"(816) 323-8524","countryCode":"US","zipcode":"64082","address1":"3735 SW Hollywood Dr","address2":"","chatEnabled":true,"shortBusinessId":1194923,"businessAlias":"Pride Cleaners - Raintree","businessName":"Pride Cleaners - Raintree","name":"Pride Cleaners - Raintree","city":"Lee's Summit","state":"MO","locationName":"Pride Cleaners - Raintree","latitude":38.8520854,"longitude":-94.3807123,"emailId":"pride@pridecleaners.com","phone":"(816) 442-8559"},{"businessId":169713563871737,"location":"Lee's Summit, MO - 422 SW Ward Rd","businessSMSPhoneNumber":"(816) 744-6218","countryCode":"US","zipcode":"64081","address1":"422 SW Ward Rd","address2":"","chatEnabled":true,"shortBusinessId":1194924,"businessAlias":"Pride Cleaners - Cedar Creek","businessName":"Pride Cleaners - Cedar Creek","name":"Pride Cleaners - Cedar Creek","city":"Lee's Summit","state":"MO","locationName":"Pride Cleaners - Cedar Creek","latitude":38.90857969,"longitude":-94.3976386,"emailId":"pride@pridecleaners.com","phone":"(816) 347-7464"},{"businessId":169713564163222,"location":"Lee's Summit, MO - 901 NE Woods Chapel Rd","businessSMSPhoneNumber":"(816) 677-6111","countryCode":"US","zipcode":"64064","address1":"901 NE Woods Chapel Rd","address2":"","chatEnabled":true,"shortBusinessId":1194926,"businessAlias":"Pride Cleaners - Woods Chapel","businessName":"Pride Cleaners - Woods Chapel","name":"Pride Cleaners - Woods Chapel","city":"Lee's Summit","state":"MO","locationName":"Pride Cleaners - Woods Chapel","latitude":38.9816,"longitude":-94.35959,"emailId":"info@pride-cleaners.co.uk","phone":"(816) 524-3842"},{"businessId":169713564460221,"location":"Lenexa, KS","businessSMSPhoneNumber":"(913) 423-2991","countryCode":"US","zipcode":"66219","address1":"8740 Lackman Rd","address2":"","chatEnabled":true,"shortBusinessId":1194928,"businessAlias":"Pride Cleaners - Country Hill","businessName":"Pride Cleaners - Country Hill","name":"Pride Cleaners - Country Hill","city":"Lenexa","state":"KS","locationName":"Pride Cleaners - Country Hill","latitude":38.969845,"longitude":-94.7615,"emailId":"pride@pridecleaners.com","phone":"(913) 492-3011"},{"businessId":169713566536443,"location":"Mission, KS","businessSMSPhoneNumber":"(913) 490-0829","countryCode":"US","zipcode":"66202","address1":"5924 Broadmoor","address2":"","chatEnabled":true,"shortBusinessId":1194942,"businessAlias":"Pride Cleaners - Broadmoor","businessName":"Pride Cleaners - Broadmoor","name":"Pride Cleaners - Broadmoor","city":"Mission","state":"KS","locationName":"Pride Cleaners - Broadmoor","latitude":39.0212556,"longitude":-94.66613009,"emailId":"pride@pridecleaners.com","phone":"(913) 432-5348"},{"businessId":169713563231701,"location":"North Kansas City, MO","businessSMSPhoneNumber":"(816) 208-9176","countryCode":"US","zipcode":"64116","address1":"2018 Swift St","address2":"","chatEnabled":true,"shortBusinessId":1194920,"businessAlias":"Pride Cleaners - North Kansas City","businessName":"Pride Cleaners - North Kansas City","name":"Pride Cleaners - North Kansas City","city":"North Kansas City","state":"MO","locationName":"Pride Cleaners - North Kansas City","latitude":39.14337119,"longitude":-94.5776571,"emailId":"pride@pridecleaners.com","phone":"(816) 221-1066"},{"businessId":174612482162560,"location":"Olathe, KS - 13900 W 135th St","businessSMSPhoneNumber":"(816) 486-2625","countryCode":"US","zipcode":"66062","address1":"13900 W 135th St","address2":"","chatEnabled":true,"shortBusinessId":1532949,"businessAlias":"Pride Cleaners - 135th","businessName":"Pride Cleaners - 135th","name":"Pride Cleaners - 135th","city":"Olathe","state":"KS","locationName":"Pride Cleaners - 135th","latitude":38.88423,"longitude":-94.74671,"emailId":"","phone":"(816) 442-8555"},{"businessId":169713561007019,"location":"Olathe, KS - 14940 W 119th St","businessSMSPhoneNumber":"(913) 386-3564","countryCode":"US","zipcode":"66062","address1":"14940 W 119th St","address2":"","chatEnabled":true,"shortBusinessId":1194905,"businessAlias":"Pride Cleaners - Blackbob","businessName":"Pride Cleaners - Blackbob","name":"Pride Cleaners - Blackbob","city":"Olathe","state":"KS","locationName":"Pride Cleaners - Blackbob","latitude":38.913544,"longitude":-94.75964,"emailId":"pride@pridecleaners.com","phone":"(913) 768-1770"},{"businessId":169713566387360,"location":"Olathe, KS - 16695 B W. 151st St","businessSMSPhoneNumber":"(913) 392-3639","countryCode":"US","zipcode":"66062","address1":"16695 B W. 151st St","address2":"","chatEnabled":true,"shortBusinessId":1194941,"businessAlias":"Pride Cleaners - Heritage Plaza","businessName":"Pride Cleaners - Heritage Plaza","name":"Pride Cleaners - Heritage Plaza","city":"Olathe","state":"KS","locationName":"Pride Cleaners - Heritage Plaza","latitude":38.8544088,"longitude":-94.7789889,"emailId":"pride@pridecleaners.com","phone":"(913) 764-9491"},{"businessId":169713564625135,"location":"Overland Park, KS - 11340 W 135th St","businessSMSPhoneNumber":"(913) 728-5901","countryCode":"US","zipcode":"66221","address1":"11340 W 135th St","address2":"","chatEnabled":true,"shortBusinessId":1194929,"businessAlias":"Pride Cleaners - Twin Oaks","businessName":"Pride Cleaners - Twin Oaks","name":"Pride Cleaners - Twin Oaks","city":"Overland Park","state":"KS","locationName":"Pride Cleaners - Twin Oaks","latitude":38.88461119,"longitude":-94.7181609,"emailId":"pride@pridecleaners.com","phone":"(913) 681-4959"},{"businessId":169713562200188,"location":"Overland Park, KS - 14841 Metcalf Ave","businessSMSPhoneNumber":"(913) 398-4576","countryCode":"US","zipcode":"66223","address1":"14841 Metcalf Ave","address2":"","chatEnabled":true,"shortBusinessId":1194913,"businessAlias":"Pride Cleaners - Lionsgate","businessName":"Pride Cleaners - Lionsgate","name":"Pride Cleaners - Lionsgate","city":"Overland Park","state":"KS","locationName":"Pride Cleaners - Lionsgate","latitude":38.8591679,"longitude":-94.6672828,"emailId":"pride@pridecleaners.com","phone":"(913) 814-9236"},{"businessId":169713565935204,"location":"Overland Park, KS - 5700 W. 95th Street","businessSMSPhoneNumber":"(913) 398-3949","countryCode":"US","zipcode":"66207","address1":"5700 W. 95th Street","address2":"","chatEnabled":true,"shortBusinessId":1194938,"businessAlias":"Pride Cleaners - Nall","businessName":"Pride Cleaners - Training Center - Nall","name":"Pride Cleaners - Training Center - Nall","city":"Overland Park","state":"KS","locationName":"Pride Cleaners - Training Center - Nall","latitude":38.9571684,"longitude":-94.6516862,"emailId":"pride@pridecleaners.com","phone":"(913) 649-0722"},{"businessId":169713561165525,"location":"Overland Park, KS - 8613 College Blvd","businessSMSPhoneNumber":"(913) 398-4570","countryCode":"US","zipcode":"66210","address1":"8613 College Blvd","address2":"","chatEnabled":true,"shortBusinessId":1194906,"businessAlias":"Pride Cleaners - Executive Hills","businessName":"Pride Cleaners - Executive Hills","name":"Pride Cleaners - Executive Hills","city":"Overland Park","state":"KS","locationName":"Pride Cleaners - Executive Hills","latitude":38.92684,"longitude":-94.68415,"emailId":"pride@pridecleaners.com","phone":"(913) 451-9339"},{"businessId":169713564770128,"location":"Overland Park, KS - 8748 W. 135th Street","businessSMSPhoneNumber":"(913) 423-3023","countryCode":"US","zipcode":"66221","address1":"8748 W. 135th Street","address2":"","chatEnabled":true,"shortBusinessId":1194930,"businessAlias":"Pride Cleaners - Stone Gate","businessName":"Pride Cleaners - Stone Gate","name":"Pride Cleaners - Stone Gate","city":"Overland Park","state":"KS","locationName":"Pride Cleaners - Stone Gate","latitude":38.8857424,"longitude":-94.68765049,"emailId":"pride@pridecleaners.com","phone":"(913) 851-3478"},{"businessId":169713565356154,"location":"Overland Park, KS - 9515 Antioch Rd","businessSMSPhoneNumber":"(913) 246-5993","countryCode":"US","zipcode":"66212","address1":"9515 Antioch Rd","address2":"","chatEnabled":true,"shortBusinessId":1194934,"businessAlias":"Pride Cleaners - Antioch","businessName":"Pride Cleaners - Antioch","name":"Pride Cleaners - Antioch","city":"Overland Park","state":"KS","locationName":"Pride Cleaners - Antioch","latitude":38.9555148,"longitude":-94.6857421,"emailId":"pride@pridecleaners.com","phone":"(913) 912-1393"},{"businessId":169713561907161,"location":"Parkville, MO","businessSMSPhoneNumber":"(816) 354-0925","countryCode":"US","zipcode":"64152","address1":"6328 Lewis Street","address2":"Suite 201","chatEnabled":true,"shortBusinessId":1194911,"businessAlias":"Pride Cleaners - Parkville Commons","businessName":"Pride Cleaners - Parkville Commons","name":"Pride Cleaners - Parkville Commons","city":"Parkville","state":"MO","locationName":"Pride Cleaners - Parkville Commons","latitude":39.2092752,"longitude":-94.6849646,"emailId":"pride@pridecleaners.com","phone":"(816) 587-7433"},{"businessId":174612519291093,"location":"Platte City, MO","businessSMSPhoneNumber":"(816) 370-5765","countryCode":"US","zipcode":"64079","address1":"1306 Platte Falls Rd","address2":"","chatEnabled":true,"shortBusinessId":1532951,"businessAlias":"Pride Cleaners - Platte City","businessName":"Pride Cleaners - Platte City","name":"Pride Cleaners - Platte City","city":"Platte City","state":"MO","locationName":"Pride Cleaners - Platte City","latitude":39.351532,"longitude":-94.766045,"emailId":"","phone":"(816) 431-6095"},{"businessId":169713565797058,"location":"Prairie Village, KS","businessSMSPhoneNumber":"(913) 423-6131","countryCode":"US","zipcode":"66208","address1":"6945 Tomahawk Rd","address2":"","chatEnabled":true,"shortBusinessId":1194937,"businessAlias":"Pride Cleaners - Prairie Village","businessName":"Pride Cleaners - Prairie Village","name":"Pride Cleaners - Prairie Village","city":"Prairie Village","state":"KS","locationName":"Pride Cleaners - Prairie Village","latitude":39.0028813,"longitude":-94.631698,"emailId":"pride@pridecleaners.com","phone":"(913) 362-6060"},{"businessId":169713563575592,"location":"Raymore, MO","businessSMSPhoneNumber":"(816) 685-0998","countryCode":"US","zipcode":"64083","address1":"1114 W Foxwood Dr","address2":"","chatEnabled":true,"shortBusinessId":1194922,"businessAlias":"Pride Cleaners - Raymore","businessName":"Pride Cleaners - Raymore","name":"Pride Cleaners - Raymore","city":"Raymore","state":"MO","locationName":"Pride Cleaners - Raymore","latitude":38.8124369,"longitude":-94.4734179,"emailId":"pride@pridecleaners.com","phone":"(816) 331-6551"},{"businessId":169713562489080,"location":"Raytown, MO","businessSMSPhoneNumber":"(913) 600-2586","countryCode":"US","zipcode":"64133","address1":"7322 Raytown Rd","address2":"","chatEnabled":true,"shortBusinessId":1194915,"businessAlias":"Pride Cleaners - Raytown","businessName":"Pride Cleaners - Raytown","name":"Pride Cleaners - Raytown","city":"Raytown","state":"MO","locationName":"Pride Cleaners - Raytown","latitude":38.989277,"longitude":-94.46472,"emailId":"pride@pridecleaners.com","phone":"(913) 661-0613"},{"businessId":169713566239592,"location":"Roeland Park, KS","businessSMSPhoneNumber":"(913) 423-5237","countryCode":"US","zipcode":"66205","address1":"5000 Johnson Dr","address2":"","chatEnabled":true,"shortBusinessId":1194940,"businessAlias":"Pride Cleaners - Roeland Park","businessName":"Pride Cleaners - Roeland Park","name":"Pride Cleaners - Roeland Park","city":"Roeland Park","state":"KS","locationName":"Pride Cleaners - Roeland Park","latitude":39.02434,"longitude":-94.64354,"emailId":"pride@pridecleaners.com","phone":"(913) 262-3630"},{"businessId":169713564314130,"location":"Shawnee, KS - 12121 Shawnee Mission Pkwy","businessSMSPhoneNumber":"(913) 379-8615","countryCode":"US","zipcode":"66216","address1":"12121 Shawnee Mission Pkwy","address2":"","chatEnabled":true,"shortBusinessId":1194927,"businessAlias":"Pride Cleaners - Shawnee Village","businessName":"Pride Cleaners - Shawnee Village","name":"Pride Cleaners - Shawnee Village","city":"Shawnee","state":"KS","locationName":"Pride Cleaners - Shawnee Village","latitude":39.01422,"longitude":-94.72694,"emailId":"pride@pridecleaners.com","phone":"(913) 248-2879"},{"businessId":168616616897154,"location":"Shawnee, KS - 22042 W 66th St","businessSMSPhoneNumber":"(913) 423-9262","countryCode":"US","zipcode":"66226","address1":"22042 W 66th St","address2":"","chatEnabled":true,"shortBusinessId":1124385,"businessAlias":"Pride Cleaners - Monticello","businessName":"Pride Cleaners - Monticello","name":"Pride Cleaners - Monticello","city":"Shawnee","state":"KS","locationName":"Pride Cleaners - Monticello","latitude":39.00985699,"longitude":-94.84199,"emailId":"pride@pridecleaners.com","phone":"(913) 422-0042"}],"chatBubble":"Have a question? We are here to help!","enableChatBubble":1,"enableChatBubbleSound":1,"chatIconColor":"#455B76","chatIconForeColor":"#FFFFFF","supportedCountryCodes":["US","PR","VI","MX","CA"],"businessName":"Pride Cleaners","widgetName":null,"enabled":1,"widgetConfigId":172095,"businessSMSPhoneNumber":null,"teams":null,"isLiveChatEnabled":false,"isChatbotEnabled":true,"enableGoogleAnalytics":false,"googleAnalyticsVersion":"","googleTrackingId":"","webChatOfflineClosingMessageHeader":"We will text you !","webChatOfflineClosingMessageBody":"We will follow up with you soon. You can always text us at [Business Phone].","liveChatOfflineClosingMessageHeader":"Text us!","liveChatOfflineClosingMessageBody":"The best way to get ahold of us is to text us [Business Texting Number].","liveChatOnlineClosingMessageHeader":"Text us!","liveChatOnlineClosingMessageBody":"The best way to get ahold of us is to text us [Business Texting Number].","liveChatOfflineWelcomeMessage":"We're closed right now but we got your message. We'll text you on your number when we're back!","liveChatOnlineWelcomeMessage":"Give us a moment while we look for someone available to help you.","installed":1,"websites":["https%3A//pridecleaners.com","https%3A//www.pridecleaners.com"],"statusUpdateOn":"2026-04-17T03:01:14.000+00:00","liveChatOnlineTextMessage":"Thank you for contacting [Business Name]! Someone from our team will reach out shortly.","liveChatOfflineTextMessage":"Thank you for contacting [Business Name]! We are currently closed, but we’ll text you when we’re back!","locationHierarchy":null,"externalId":172095,"allLocationDisabled":0,"emailMandatory":false,"customFields":null,"disclaimer":"By sending this message, you expressly consent to receive communications from us. You may opt out at any time.","disclaimerLinks":[],"autoDetectLocationEnabled":true,"disclaimerSelectionStatus":0,"robinInsideBusinessHours":null,"robinOutsideBusinessHours":null,"enablePrechatForm":1,"prechatFormInsideBusinessHours":1,"prechatFormOutsideBusinessHours":1,"chatbotHours":null,"timerDisplay":1,"timerSeconds":180,"mobileView":"fullView","widgetAgent":[],"fallbackMessage":null,"accountType":3,"businessOpen":false,"locale":null,"fields":null,"bubbleBGColor":"#F8F8F8"}; var locale = "en"; var draftSessionId = null;