UrgentcareCLI 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +49 -0
- data/LICENSE.txt +21 -0
- data/Notes +41 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/UrgentCare.gemspec +39 -0
- data/bin/Urgentcare +8 -0
- data/bin/console +22 -0
- data/bin/setup +8 -0
- data/data.txt +4 -0
- data/lib/UrgentCare.rb +13 -0
- data/lib/UrgentCare/CLI.rb +57 -0
- data/lib/UrgentCare/Office.rb +23 -0
- data/lib/UrgentCare/version.rb +3 -0
- data/lib/Urgentcare/Scraper.rb +36 -0
- data/spec.md +6 -0
- data/test.data +2110 -0
- metadata +136 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
class Urgentcare::Office
|
2
|
+
|
3
|
+
attr_accessor :name, :phone_number, :next_available, :url
|
4
|
+
|
5
|
+
@@all = []
|
6
|
+
|
7
|
+
def initialize(name = nil, url = nil, next_available = nil, phone_number = nil)
|
8
|
+
@name = name
|
9
|
+
@url = url
|
10
|
+
@next_available = next_available
|
11
|
+
@phone_number = phone_number
|
12
|
+
@@all << self
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.all
|
16
|
+
@@all
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.clear
|
20
|
+
@@all.clear
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
class Urgentcare::Scraper
|
2
|
+
|
3
|
+
def get_page # page that lists clinics in Boston and surrounding area
|
4
|
+
@doc = Nokogiri::HTML(open('https://www.carewellurgentcare.com/locations/'))
|
5
|
+
end
|
6
|
+
|
7
|
+
def get_clinics
|
8
|
+
url_array = []
|
9
|
+
digits_array = []
|
10
|
+
get_page.css('.et_pb_column_1_4').each_with_index do |location, index|
|
11
|
+
if index.odd?
|
12
|
+
url_array.push(location)
|
13
|
+
else
|
14
|
+
digits_array.push(location)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
merge_arrays(digits_array, url_array)
|
18
|
+
end
|
19
|
+
|
20
|
+
def merge_arrays(digits_array, url_array)
|
21
|
+
digits_array[0..16].zip(url_array[0..16]).each_with_index do |office_details, index|
|
22
|
+
make_office(office_details)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def make_office(office_details)
|
27
|
+
office = Urgentcare::Office.new
|
28
|
+
office.name = office_details[0].css('strong').text.strip.tr("\n", ' ').gsub('Next Available:', ', ').gsub(' MA, ', ' ').gsub(' MA ,', ' ').gsub(' RI, ', ', ').strip.split(',')[0]
|
29
|
+
office.url = office_details[1].css('a')[1]['href']
|
30
|
+
office.phone_number = office_details[0].css('a[href]').text
|
31
|
+
doc_d = Nokogiri::HTML(open("https://www.carewellurgentcare.com#{office.url}"))
|
32
|
+
doc_i = doc_d.css('.locat').attr('src').text
|
33
|
+
doc_n = Nokogiri::HTML(open(doc_i.to_s))
|
34
|
+
office.next_available = doc_n.css('.panel-heading').text.strip.gsub("\r\n", ' ').split(',')[0]
|
35
|
+
end
|
36
|
+
end
|
data/spec.md
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
Specifications for the CLI Assessment
|
2
|
+
Specs:
|
3
|
+
|
4
|
+
X Have a CLI for interfacing with the application - CLI accesses list and detail view based on user input.
|
5
|
+
X Pull data from an external source - pulls data from the Carewell Urgentcare website with locations across Massachusetts. Pulls data from main page and individual office pages.
|
6
|
+
X Implement both list and detail views - the list view displays all available offices and the detail view gives specific details on one individual office.
|
data/test.data
ADDED
@@ -0,0 +1,2110 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
|
4
|
+
<!--[if IE 6]>
|
5
|
+
<html id="ie6" lang="en-US" prefix="og: http://ogp.me/ns#">
|
6
|
+
<![endif]-->
|
7
|
+
<!--[if IE 7]>
|
8
|
+
<html id="ie7" lang="en-US" prefix="og: http://ogp.me/ns#">
|
9
|
+
<![endif]-->
|
10
|
+
<!--[if IE 8]>
|
11
|
+
<html id="ie8" lang="en-US" prefix="og: http://ogp.me/ns#">
|
12
|
+
<![endif]-->
|
13
|
+
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
14
|
+
<html lang="en-US" prefix="og: http://ogp.me/ns#">
|
15
|
+
<!--<![endif]-->
|
16
|
+
|
17
|
+
<head>
|
18
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
19
|
+
<meta charset="UTF-8">
|
20
|
+
|
21
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
22
|
+
<link rel="pingback" href="https://www.carewellurgentcare.com/xmlrpc.php">
|
23
|
+
|
24
|
+
<!--[if lt IE 9]>
|
25
|
+
<script src="https://www.carewellurgentcare.com/wp-content/themes/Divi/js/html5.js" type="text/javascript"></script>
|
26
|
+
<![endif]-->
|
27
|
+
|
28
|
+
<script type="text/javascript">
|
29
|
+
document.documentElement.className = 'js';
|
30
|
+
</script>
|
31
|
+
|
32
|
+
<script>
|
33
|
+
var et_site_url = 'https://www.carewellurgentcare.com';
|
34
|
+
var et_post_id = '2926';
|
35
|
+
|
36
|
+
function et_core_page_resource_fallback(a, b) {
|
37
|
+
"undefined" === typeof b && (b = a.sheet.cssRules && 0 === a.sheet.cssRules.length);
|
38
|
+
b && (a.onerror = null, a.onload = null, a.href ? a.href = et_site_url + "/?et_core_page_resource=" + a.id + et_post_id : a.src && (a.src = et_site_url + "/?et_core_page_resource=" + a.id + et_post_id))
|
39
|
+
}
|
40
|
+
</script>
|
41
|
+
<title>CareWell Urgent Care locations | Walk-in Clinics - CareWell Urgent Care</title>
|
42
|
+
|
43
|
+
<!-- This site is optimized with the Yoast SEO plugin v7.2 - https://yoast.com/wordpress/plugins/seo/ -->
|
44
|
+
<meta name="description" content="Book an Urgent Care Appointment at one of our many CareWell Urgent Care locations.">
|
45
|
+
<link rel="canonical" href="https://www.carewellurgentcare.com/locations/">
|
46
|
+
<meta property="og:locale" content="en_US">
|
47
|
+
<meta property="og:type" content="article">
|
48
|
+
<meta property="og:title" content="CareWell Urgent Care locations | Walk-in Clinics - CareWell Urgent Care">
|
49
|
+
<meta property="og:description" content="Book an Urgent Care Appointment at one of our many CareWell Urgent Care locations.">
|
50
|
+
<meta property="og:url" content="https://www.carewellurgentcare.com/locations/">
|
51
|
+
<meta property="og:site_name" content="CareWell Urgent Care">
|
52
|
+
<!-- / Yoast SEO plugin. -->
|
53
|
+
|
54
|
+
<link rel="dns-prefetch" href="//s0.wp.com">
|
55
|
+
<link rel="dns-prefetch" href="//fonts.googleapis.com">
|
56
|
+
<link rel="dns-prefetch" href="//s.w.org">
|
57
|
+
<link rel="alternate" type="application/rss+xml" title="CareWell Urgent Care » Feed" href="https://www.carewellurgentcare.com/feed/">
|
58
|
+
<link rel="alternate" type="application/rss+xml" title="CareWell Urgent Care » Comments Feed" href="https://www.carewellurgentcare.com/comments/feed/">
|
59
|
+
<link rel="alternate" type="application/rss+xml" title="CareWell Urgent Care » CareWell Urgent Care locations | Walk-in Clinics Comments Feed" href="https://www.carewellurgentcare.com/locations/feed/">
|
60
|
+
<script type="text/javascript">
|
61
|
+
window._wpemojiSettings = {
|
62
|
+
"baseUrl": "https:\/\/s.w.org\/images\/core\/emoji\/2.4\/72x72\/",
|
63
|
+
"ext": ".png",
|
64
|
+
"svgUrl": "https:\/\/s.w.org\/images\/core\/emoji\/2.4\/svg\/",
|
65
|
+
"svgExt": ".svg",
|
66
|
+
"source": {
|
67
|
+
"concatemoji": "https:\/\/www.carewellurgentcare.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.9.6"
|
68
|
+
}
|
69
|
+
};
|
70
|
+
! function(a, b, c) {
|
71
|
+
function d(a, b) {
|
72
|
+
var c = String.fromCharCode;
|
73
|
+
l.clearRect(0, 0, k.width, k.height), l.fillText(c.apply(this, a), 0, 0);
|
74
|
+
var d = k.toDataURL();
|
75
|
+
l.clearRect(0, 0, k.width, k.height), l.fillText(c.apply(this, b), 0, 0);
|
76
|
+
var e = k.toDataURL();
|
77
|
+
return d === e
|
78
|
+
}
|
79
|
+
|
80
|
+
function e(a) {
|
81
|
+
var b;
|
82
|
+
if (!l || !l.fillText) return !1;
|
83
|
+
switch (l.textBaseline = "top", l.font = "600 32px Arial", a) {
|
84
|
+
case "flag":
|
85
|
+
return !(b = d([55356, 56826, 55356, 56819], [55356, 56826, 8203, 55356, 56819])) && (b = d([55356, 57332, 56128, 56423, 56128, 56418, 56128, 56421, 56128, 56430, 56128, 56423, 56128, 56447], [55356, 57332, 8203, 56128, 56423, 8203, 56128,
|
86
|
+
56418, 8203, 56128, 56421, 8203, 56128, 56430, 8203, 56128, 56423, 8203, 56128, 56447
|
87
|
+
]), !b);
|
88
|
+
case "emoji":
|
89
|
+
return b = d([55357, 56692, 8205, 9792, 65039], [55357, 56692, 8203, 9792, 65039]), !b
|
90
|
+
}
|
91
|
+
return !1
|
92
|
+
}
|
93
|
+
|
94
|
+
function f(a) {
|
95
|
+
var c = b.createElement("script");
|
96
|
+
c.src = a, c.defer = c.type = "text/javascript", b.getElementsByTagName("head")[0].appendChild(c)
|
97
|
+
}
|
98
|
+
var g, h, i, j, k = b.createElement("canvas"),
|
99
|
+
l = k.getContext && k.getContext("2d");
|
100
|
+
for (j = Array("flag", "emoji"), c.supports = {
|
101
|
+
everything: !0,
|
102
|
+
everythingExceptFlag: !0
|
103
|
+
}, i = 0; i < j.length; i++) c.supports[j[i]] = e(j[i]), c.supports.everything = c.supports.everything && c.supports[j[i]], "flag" !== j[i] && (c.supports.everythingExceptFlag = c.supports.everythingExceptFlag && c.supports[j[i]]);
|
104
|
+
c.supports.everythingExceptFlag = c.supports.everythingExceptFlag && !c.supports.flag, c.DOMReady = !1, c.readyCallback = function() {
|
105
|
+
c.DOMReady = !0
|
106
|
+
}, c.supports.everything || (h = function() {
|
107
|
+
c.readyCallback()
|
108
|
+
}, b.addEventListener ? (b.addEventListener("DOMContentLoaded", h, !1), a.addEventListener("load", h, !1)) : (a.attachEvent("onload", h), b.attachEvent("onreadystatechange", function() {
|
109
|
+
"complete" === b.readyState && c.readyCallback()
|
110
|
+
})), g = c.source || {}, g.concatemoji ? f(g.concatemoji) : g.wpemoji && g.twemoji && (f(g.twemoji), f(g.wpemoji)))
|
111
|
+
}(window, document, window._wpemojiSettings);
|
112
|
+
</script>
|
113
|
+
<meta content="Divi Child v.1.0" name="generator">
|
114
|
+
<style type="text/css">
|
115
|
+
img.wp-smiley,
|
116
|
+
img.emoji {
|
117
|
+
display: inline !important;
|
118
|
+
border: none !important;
|
119
|
+
box-shadow: none !important;
|
120
|
+
height: 1em !important;
|
121
|
+
width: 1em !important;
|
122
|
+
margin: 0 .07em !important;
|
123
|
+
vertical-align: -0.1em !important;
|
124
|
+
background: none !important;
|
125
|
+
padding: 0 !important;
|
126
|
+
}
|
127
|
+
</style>
|
128
|
+
<link rel="stylesheet" id="pt-cv-public-style-css" href="https://www.carewellurgentcare.com/wp-content/plugins/content-views-query-and-display-post-page/public/assets/css/cv.css?ver=2.0.1" type="text/css" media="all">
|
129
|
+
<link rel="stylesheet" id="contact-form-7-css" href="https://www.carewellurgentcare.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.0.1" type="text/css" media="all">
|
130
|
+
<link rel="stylesheet" id="overdrive-centers-style-css" href="https://www.carewellurgentcare.com/wp-content/plugins/overdrive-centers/style.css?ver=4.9.6" type="text/css" media="all">
|
131
|
+
<link rel="stylesheet" id="ce_responsive-css" href="https://www.carewellurgentcare.com/wp-content/plugins/simple-embed-code/css/video-container.css?ver=4.9.6" type="text/css" media="all">
|
132
|
+
<link rel="stylesheet" id="wpsl-styles-css" href="https://www.carewellurgentcare.com/wp-content/plugins/wp-store-locator/css/styles.min.css?ver=2.2.14" type="text/css" media="all">
|
133
|
+
<link rel="stylesheet" id="parent-style-css" href="https://www.carewellurgentcare.com/wp-content/themes/Divi/style.css?ver=4.9.6" type="text/css" media="all">
|
134
|
+
<link rel="stylesheet" id="divi-fonts-css" href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext" type="text/css" media="all">
|
135
|
+
<link rel="stylesheet" id="divi-style-css" href="https://www.carewellurgentcare.com/wp-content/themes/Divi-child/style.css?ver=3.0.106" type="text/css" media="all">
|
136
|
+
<link rel="stylesheet" id="dashicons-css" href="https://www.carewellurgentcare.com/wp-includes/css/dashicons.min.css?ver=4.9.6" type="text/css" media="all">
|
137
|
+
<link rel="stylesheet" id="jetpack_css-css" href="https://www.carewellurgentcare.com/wp-content/plugins/jetpack/css/jetpack.css?ver=6.0" type="text/css" media="all">
|
138
|
+
<link rel="stylesheet" id="et-googleFonts-css" href="https://fonts.googleapis.com/css?family=Fira+Sans&ver=4.9.6" type="text/css" media="all">
|
139
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-includes/js/jquery/jquery.js?ver=1.12.4"></script>
|
140
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1"></script>
|
141
|
+
<link rel="https://api.w.org/" href="https://www.carewellurgentcare.com/wp-json/">
|
142
|
+
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.carewellurgentcare.com/xmlrpc.php?rsd">
|
143
|
+
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.carewellurgentcare.com/wp-includes/wlwmanifest.xml">
|
144
|
+
<link rel="shortlink" href="https://www.carewellurgentcare.com/?p=2926">
|
145
|
+
<link rel="alternate" type="application/json+oembed" href="https://www.carewellurgentcare.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.carewellurgentcare.com%2Flocations%2F">
|
146
|
+
<link rel="alternate" type="text/xml+oembed" href="https://www.carewellurgentcare.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.carewellurgentcare.com%2Flocations%2F&format=xml">
|
147
|
+
|
148
|
+
<!--BEGIN: TRACKING CODE MANAGER BY INTELLYWP.COM IN HEAD//-->
|
149
|
+
<!-- Facebook Pixel Code -->
|
150
|
+
<script>
|
151
|
+
! function(f, b, e, v, n, t, s) {
|
152
|
+
if (f.fbq) return;
|
153
|
+
n = f.fbq = function() {
|
154
|
+
n.callMethod ?
|
155
|
+
n.callMethod.apply(n, arguments) : n.queue.push(arguments)
|
156
|
+
};
|
157
|
+
if (!f._fbq) f._fbq = n;
|
158
|
+
n.push = n;
|
159
|
+
n.loaded = !0;
|
160
|
+
n.version = '2.0';
|
161
|
+
n.queue = [];
|
162
|
+
t = b.createElement(e);
|
163
|
+
t.async = !0;
|
164
|
+
t.src = v;
|
165
|
+
s = b.getElementsByTagName(e)[0];
|
166
|
+
s.parentNode.insertBefore(t, s)
|
167
|
+
}(window,
|
168
|
+
document, 'script', 'https://connect.facebook.net/en_US/fbevents.js');
|
169
|
+
|
170
|
+
fbq('init', '1398932630124351');
|
171
|
+
fbq('track', "PageView");
|
172
|
+
fbq('track', 'ViewContent');
|
173
|
+
</script>
|
174
|
+
<noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=1398932630124351&ev=PageView&noscript=1"></noscript>
|
175
|
+
<!-- End Facebook Pixel Code -->
|
176
|
+
<!-- Google Tag Manager -->
|
177
|
+
<script>
|
178
|
+
(function(w, d, s, l, i) {
|
179
|
+
w[l] = w[l] || [];
|
180
|
+
w[l].push({
|
181
|
+
'gtm.start': new Date().getTime(),
|
182
|
+
event: 'gtm.js'
|
183
|
+
});
|
184
|
+
var f = d.getElementsByTagName(s)[0],
|
185
|
+
j = d.createElement(s),
|
186
|
+
dl = l != 'dataLayer' ? '&l=' + l : '';
|
187
|
+
j.async = true;
|
188
|
+
j.src =
|
189
|
+
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
|
190
|
+
f.parentNode.insertBefore(j, f);
|
191
|
+
})(window, document, 'script', 'dataLayer', 'GTM-PV3CPWG');
|
192
|
+
</script>
|
193
|
+
<!-- End Google Tag Manager -->
|
194
|
+
<!--END: https://wordpress.org/plugins/tracking-code-manager IN HEAD//-->
|
195
|
+
<style type="text/css">
|
196
|
+
img#wpstats {
|
197
|
+
display: none
|
198
|
+
}
|
199
|
+
</style>
|
200
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
201
|
+
<link rel="shortcut icon" href="/wp-content/uploads/2017/04/favicon-cw-01.png">
|
202
|
+
<link rel="stylesheet" id="et-core-unified-cached-inline-styles" href="https://www.carewellurgentcare.com/wp-content/cache/et/2926/et-core-unified-152719041297.min.css" onerror="et_core_page_resource_fallback(this, true)" onload="et_core_page_resource_fallback(this)">
|
203
|
+
</head>
|
204
|
+
|
205
|
+
<body class="page-template-default page page-id-2926 page-parent et_button_no_icon et_button_custom_icon et_pb_button_helper_class et_non_fixed_nav et_show_nav et_cover_background et_secondary_nav_enabled et_secondary_nav_only_menu et_pb_gutter windows et_pb_gutters3 et_primary_nav_dropdown_animation_fade et_secondary_nav_dropdown_animation_fade et_pb_footer_columns1 et_header_style_left et_pb_pagebuilder_layout et_right_sidebar et_divi_theme et_minified_js et_minified_css">
|
206
|
+
<div id="page-container">
|
207
|
+
|
208
|
+
<div id="top-header">
|
209
|
+
<div class="container clearfix">
|
210
|
+
|
211
|
+
|
212
|
+
<div id="et-secondary-menu">
|
213
|
+
<ul id="et-secondary-nav" class="menu">
|
214
|
+
<li class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-6889"><a href="/locations">Walk-In: No Appointments Necessary</a></li>
|
215
|
+
</ul>
|
216
|
+
</div>
|
217
|
+
<!-- #et-secondary-menu -->
|
218
|
+
|
219
|
+
</div>
|
220
|
+
<!-- .container -->
|
221
|
+
</div>
|
222
|
+
<!-- #top-header -->
|
223
|
+
|
224
|
+
|
225
|
+
<header id="main-header" data-height-onload="100">
|
226
|
+
<div class="container clearfix et_menu_container">
|
227
|
+
<div class="logo_container">
|
228
|
+
<span class="logo_helper"></span>
|
229
|
+
<a href="https://www.carewellurgentcare.com/">
|
230
|
+
<img src="/wp-content/uploads/2017/04/Carewell-Logo.png" alt="CareWell Urgent Care" id="logo" data-height-percentage="75">
|
231
|
+
</a>
|
232
|
+
</div>
|
233
|
+
<div id="et-top-navigation" data-height="100" data-fixed-height="40">
|
234
|
+
<nav id="top-menu-nav">
|
235
|
+
<ul id="top-menu" class="nav et_disable_top_tier">
|
236
|
+
<li id="menu-item-2937" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-2926 current_page_item current-menu-ancestor current-menu-parent current_page_parent current_page_ancestor menu-item-has-children menu-item-2937">
|
237
|
+
<a href="https://www.carewellurgentcare.com/locations/">Locations</a>
|
238
|
+
<ul class="sub-menu">
|
239
|
+
<li id="menu-item-7309" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-2926 current_page_item menu-item-7309"><a href="https://www.carewellurgentcare.com/locations/">Overview</a></li>
|
240
|
+
<li id="menu-item-3073" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3073"><a href="https://www.carewellurgentcare.com/locations/billerica-ma-urgent-care/">Billerica MA</a></li>
|
241
|
+
<li id="menu-item-3085" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3085"><a href="https://www.carewellurgentcare.com/locations/cambridge-ma-inman-square-urgent-care/">Cambridge MA Inman Square</a></li>
|
242
|
+
<li id="menu-item-3281" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3281"><a href="https://www.carewellurgentcare.com/locations/cambridge-ma-fresh-pond-urgent-care/">Cambridge MA Fresh Pond</a></li>
|
243
|
+
<li id="menu-item-4633" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4633"><a href="https://www.carewellurgentcare.com/fitchburg-ma-urgent-care/">Fitchburg, MA</a></li>
|
244
|
+
<li id="menu-item-3091" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3091"><a href="https://www.carewellurgentcare.com/locations/framingham-ma-urgent-care/">Framingham MA</a></li>
|
245
|
+
<li id="menu-item-3102" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3102"><a href="https://www.carewellurgentcare.com/locations/lexington-ma-urgent-care/">Lexington MA</a></li>
|
246
|
+
<li id="menu-item-3812" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3812"><a href="https://www.carewellurgentcare.com/locations/marlborough-ma-urgent-care/">Marlborough MA</a></li>
|
247
|
+
<li id="menu-item-3047" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3047"><a href="https://www.carewellurgentcare.com/locations/needham-ma-urgent-care/">Needham MA</a></li>
|
248
|
+
<li id="menu-item-3077" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3077"><a href="https://www.carewellurgentcare.com/locations/northborough-ma-urgent-care/">Northborough MA</a></li>
|
249
|
+
<li id="menu-item-3037" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3037"><a href="https://www.carewellurgentcare.com/locations/norwell-ma-urgent-care/">Norwell MA</a></li>
|
250
|
+
<li id="menu-item-3115" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3115"><a href="https://www.carewellurgentcare.com/locations/peabody-ma-urgent-care/">Peabody MA</a></li>
|
251
|
+
<li id="menu-item-3078" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3078"><a href="https://www.carewellurgentcare.com/locations/somerville-ma-urgent-care/">Somerville MA</a></li>
|
252
|
+
<li id="menu-item-3034" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3034"><a href="https://www.carewellurgentcare.com/locations/south-dennis-ma-urgent-care/">South Dennis MA</a></li>
|
253
|
+
<li id="menu-item-3125" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3125"><a href="https://www.carewellurgentcare.com/locations/tewskbury-ma-urgent-care/">Tewksbury MA</a></li>
|
254
|
+
<li id="menu-item-3128" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3128"><a href="https://www.carewellurgentcare.com/locations/warwick-ri-urgent-care/">Warwick RI</a></li>
|
255
|
+
<li id="menu-item-3025" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3025"><a href="https://www.carewellurgentcare.com/locations/woresterfair-ma-greenwood-st-urgent-care/">Worcester MA Greenwood St</a></li>
|
256
|
+
<li id="menu-item-3024" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3024"><a href="https://www.carewellurgentcare.com/locations/woresterfair-ma-lincoln-st-urgent-care/">Worcester MA Lincoln St</a></li>
|
257
|
+
<li id="menu-item-3075" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3075">
|
258
|
+
<a href="https://www.carewellurgentcare.com/locations/coming-soon/">Coming Soon</a>
|
259
|
+
<ul class="sub-menu">
|
260
|
+
<li id="menu-item-3079" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3079"><a href="https://www.carewellurgentcare.com/locations/coming-soon/seekonk-ma-urgent-care/">Seekonk MA</a></li>
|
261
|
+
</ul>
|
262
|
+
</li>
|
263
|
+
</ul>
|
264
|
+
</li>
|
265
|
+
<li id="menu-item-2970" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2970">
|
266
|
+
<a href="https://www.carewellurgentcare.com/patient-services/">Patient Services</a>
|
267
|
+
<ul class="sub-menu">
|
268
|
+
<li id="menu-item-7310" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7310"><a href="https://www.carewellurgentcare.com/patient-services/">Overview</a></li>
|
269
|
+
<li id="menu-item-2977" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2977"><a href="https://www.carewellurgentcare.com/patient-services/acute-illness/">Acute Illness</a></li>
|
270
|
+
<li id="menu-item-2973" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2973"><a href="https://www.carewellurgentcare.com/patient-services/x-rays/">X-Rays</a></li>
|
271
|
+
<li id="menu-item-2972" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2972"><a href="https://www.carewellurgentcare.com/patient-services/lab-services/">Lab Services</a></li>
|
272
|
+
<li id="menu-item-2976" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2976"><a href="https://www.carewellurgentcare.com/patient-services/accidents-injuries/">Accidents – Injuries</a></li>
|
273
|
+
<li id="menu-item-2974" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2974"><a href="https://www.carewellurgentcare.com/patient-services/pediatric-care/">Pediatric Care</a></li>
|
274
|
+
<li id="menu-item-2978" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2978"><a href="https://www.carewellurgentcare.com/patient-services/school-sports-physicals/">School – Sports Physicals</a></li>
|
275
|
+
<li id="menu-item-2975" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2975"><a href="https://www.carewellurgentcare.com/patient-services/flu-shots/">Flu Shots</a></li>
|
276
|
+
<li id="menu-item-3808" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3808"><a href="https://www.carewellurgentcare.com/patient-services/patient-portal/">Patient Portal</a></li>
|
277
|
+
</ul>
|
278
|
+
</li>
|
279
|
+
<li id="menu-item-3177" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3177">
|
280
|
+
<a href="https://www.carewellurgentcare.com/employer-services/">Employer Services</a>
|
281
|
+
<ul class="sub-menu">
|
282
|
+
<li id="menu-item-7311" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7311"><a href="https://www.carewellurgentcare.com/employer-services/">Overview</a></li>
|
283
|
+
<li id="menu-item-2960" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2960">
|
284
|
+
<a href="https://www.carewellurgentcare.com/employer-services/occ-med-appointment/">OCC Med Appointment</a>
|
285
|
+
<ul class="sub-menu">
|
286
|
+
<li id="menu-item-3138" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3138"><a href="https://www.carewellurgentcare.com/locations/billerica_erx_wc/">Billerica MA</a></li>
|
287
|
+
<li id="menu-item-3137" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3137"><a href="https://www.carewellurgentcare.com/locations/cambridge_erx_wc/">Cambridge MA Inman Square</a></li>
|
288
|
+
<li id="menu-item-3337" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3337"><a href="https://www.carewellurgentcare.com/locations/cambridgeconcord_erx_wc/">Cambridge MA Fresh Pond</a></li>
|
289
|
+
<li id="menu-item-3136" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3136"><a href="https://www.carewellurgentcare.com/locations/framingham_erx_wc/">Framingham MA</a></li>
|
290
|
+
<li id="menu-item-3139" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3139"><a href="https://www.carewellurgentcare.com/locations/lexington_erx_wc/">Lexington MA</a></li>
|
291
|
+
<li id="menu-item-3140" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3140"><a href="https://www.carewellurgentcare.com/locations/needham_erx_wc/">Needham MA</a></li>
|
292
|
+
<li id="menu-item-3416" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3416"><a href="https://www.carewellurgentcare.com/locations/northborough_wc/">Northborough MA</a></li>
|
293
|
+
<li id="menu-item-3134" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3134"><a href="https://www.carewellurgentcare.com/locations/norwell_erx_wc/">Norwell MA</a></li>
|
294
|
+
<li id="menu-item-3135" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3135"><a href="https://www.carewellurgentcare.com/locations/peabody_erx_wc/">Peabody MA</a></li>
|
295
|
+
<li id="menu-item-3515" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3515"><a href="https://www.carewellurgentcare.com/locations/somerville_erx_wc/">Somerville MA</a></li>
|
296
|
+
<li id="menu-item-3141" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3141"><a href="https://www.carewellurgentcare.com/locations/dennis_erx_wc/">South Dennis MA</a></li>
|
297
|
+
<li id="menu-item-3142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3142"><a href="https://www.carewellurgentcare.com/locations/tewksbury_erx_wc/">Tewksbury MA</a></li>
|
298
|
+
<li id="menu-item-3253" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3253"><a href="https://www.carewellurgentcare.com/locations/worcesterfair_erx_wc/">Worcester MA Greenwood St</a></li>
|
299
|
+
<li id="menu-item-3258" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3258"><a href="https://www.carewellurgentcare.com/locations/worcesterlincoln_erx_wc/">Worcester MA Lincoln St</a></li>
|
300
|
+
<li id="menu-item-3143" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3143"><a href="https://www.carewellurgentcare.com/locations/warwick_erx_wc/">Warwick RI</a></li>
|
301
|
+
</ul>
|
302
|
+
</li>
|
303
|
+
<li id="menu-item-2982" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2982"><a href="https://www.carewellurgentcare.com/employer-services/occupational-medicine/">Occupational Medicine</a></li>
|
304
|
+
<li id="menu-item-2979" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2979"><a href="https://www.carewellurgentcare.com/employer-services/dot-physicals/">DOT Physicals</a></li>
|
305
|
+
<li id="menu-item-2980" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2980"><a href="https://www.carewellurgentcare.com/employer-services/e-screen/">E-Screen</a></li>
|
306
|
+
<li id="menu-item-2981" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2981"><a href="https://www.carewellurgentcare.com/employer-services/workers-comp/">Worker’s Comp</a></li>
|
307
|
+
</ul>
|
308
|
+
</li>
|
309
|
+
<li id="menu-item-2969" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2969">
|
310
|
+
<a href="https://www.carewellurgentcare.com/about/">About</a>
|
311
|
+
<ul class="sub-menu">
|
312
|
+
<li id="menu-item-7312" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7312"><a href="https://www.carewellurgentcare.com/about/">Overview</a></li>
|
313
|
+
<li id="menu-item-2964" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2964">
|
314
|
+
<a href="https://www.carewellurgentcare.com/about/insurance-billing/">Insurance – Billing</a>
|
315
|
+
<ul class="sub-menu">
|
316
|
+
<li id="menu-item-2966" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2966"><a href="https://www.carewellurgentcare.com/about/insurance-billing/payment-policy/">Payment Policy</a></li>
|
317
|
+
<li id="menu-item-3421" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3421"><a href="https://www.carewellurgentcare.com/about/insurance-billing/online-bill-pay/">Online Bill Pay</a></li>
|
318
|
+
</ul>
|
319
|
+
</li>
|
320
|
+
<li id="menu-item-2961" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2961">
|
321
|
+
<a href="https://www.carewellurgentcare.com/about/faqs/">FAQs</a>
|
322
|
+
<ul class="sub-menu">
|
323
|
+
<li id="menu-item-2968" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2968"><a href="https://www.carewellurgentcare.com/about/faqs/what-is-urgent-care/">What is Urgent Care</a></li>
|
324
|
+
<li id="menu-item-3988" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3988"><a href="https://www.carewellurgentcare.com/about/faqs/what-to-expect/">What to Expect</a></li>
|
325
|
+
</ul>
|
326
|
+
</li>
|
327
|
+
<li id="menu-item-3014" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-3014">
|
328
|
+
<a href="https://www.carewellurgentcare.com/about/careers/">Careers</a>
|
329
|
+
<ul class="sub-menu">
|
330
|
+
<li id="menu-item-2939" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2939"><a href="https://www.carewellurgentcare.com/about/careers/jobs-at-carewell/">Jobs at CareWell</a></li>
|
331
|
+
</ul>
|
332
|
+
</li>
|
333
|
+
<li id="menu-item-3979" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3979"><a href="https://www.carewellurgentcare.com/about/newsroom/">Newsroom</a></li>
|
334
|
+
<li id="menu-item-2963" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2963"><a href="https://www.carewellurgentcare.com/about/mission/">Mission</a></li>
|
335
|
+
<li id="menu-item-2985" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2985"><a href="https://www.carewellurgentcare.com/about/urgent-care-acquisitions/">Urgent Care Acquisitions</a></li>
|
336
|
+
<li id="menu-item-2962" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2962"><a href="https://www.carewellurgentcare.com/about/contact/">Contact</a></li>
|
337
|
+
</ul>
|
338
|
+
</li>
|
339
|
+
<li id="menu-item-2935" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-2935">
|
340
|
+
<a href="https://www.carewellurgentcare.com/blog/">Blog</a>
|
341
|
+
<ul class="sub-menu">
|
342
|
+
<li id="menu-item-7313" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7313"><a href="https://www.carewellurgentcare.com/blog/">Overview</a></li>
|
343
|
+
<li id="menu-item-2931" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-2931"><a href="https://www.carewellurgentcare.com/category/video/">Video</a></li>
|
344
|
+
<li id="menu-item-2988" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2988"><a href="https://www.carewellurgentcare.com/blog/infographics/">Infographics</a></li>
|
345
|
+
</ul>
|
346
|
+
</li>
|
347
|
+
</ul>
|
348
|
+
</nav>
|
349
|
+
|
350
|
+
|
351
|
+
|
352
|
+
|
353
|
+
<div id="et_mobile_nav_menu">
|
354
|
+
<div class="mobile_nav closed">
|
355
|
+
<span class="select_page">Select Page</span>
|
356
|
+
<span class="mobile_menu_bar mobile_menu_bar_toggle"></span>
|
357
|
+
</div>
|
358
|
+
</div>
|
359
|
+
</div>
|
360
|
+
<!-- #et-top-navigation -->
|
361
|
+
</div>
|
362
|
+
<!-- .container -->
|
363
|
+
<div class="et_search_outer">
|
364
|
+
<div class="container et_search_form_container">
|
365
|
+
<form role="search" method="get" class="et-search-form" action="https://www.carewellurgentcare.com/">
|
366
|
+
<input type="search" class="et-search-field" placeholder="Search …" value="" name="s" title="Search for:"> </form>
|
367
|
+
<span class="et_close_search_field"></span>
|
368
|
+
</div>
|
369
|
+
</div>
|
370
|
+
</header>
|
371
|
+
<!-- #main-header -->
|
372
|
+
|
373
|
+
<div id="et-main-area">
|
374
|
+
|
375
|
+
<div id="main-content">
|
376
|
+
|
377
|
+
|
378
|
+
|
379
|
+
<article id="post-2926" class="post-2926 page type-page status-publish hentry">
|
380
|
+
|
381
|
+
|
382
|
+
<div class="entry-content">
|
383
|
+
<div class="et_pb_section et_pb_section_0 et_pb_fullwidth_section et_section_regular">
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
|
390
|
+
|
391
|
+
</div>
|
392
|
+
<!-- .et_pb_section -->
|
393
|
+
<div class="et_pb_section et_pb_section_1 et_section_regular">
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
|
398
|
+
<div class=" et_pb_row et_pb_row_0">
|
399
|
+
<div class="et_pb_column et_pb_column_4_4 et_pb_column_0 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
400
|
+
|
401
|
+
|
402
|
+
<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_0">
|
403
|
+
|
404
|
+
|
405
|
+
<div class="et_pb_text_inner">
|
406
|
+
<h1 style="text-align: center;">CareWell Urgent Care locations | Walk-in Clinics</h1>
|
407
|
+
</div>
|
408
|
+
</div>
|
409
|
+
<!-- .et_pb_text -->
|
410
|
+
</div>
|
411
|
+
<!-- .et_pb_column -->
|
412
|
+
|
413
|
+
|
414
|
+
</div>
|
415
|
+
<!-- .et_pb_row -->
|
416
|
+
<div class=" et_pb_row et_pb_row_1">
|
417
|
+
<div class="et_pb_column et_pb_column_4_4 et_pb_column_1 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
418
|
+
|
419
|
+
|
420
|
+
<div class="et_pb_code et_pb_module et_pb_code_0">
|
421
|
+
|
422
|
+
|
423
|
+
<div class="et_pb_code_inner">
|
424
|
+
<style>
|
425
|
+
#wpsl-stores .wpsl-store-thumb {
|
426
|
+
height: 45px !important;
|
427
|
+
width: 45px !important;
|
428
|
+
}
|
429
|
+
|
430
|
+
#wpsl-stores,
|
431
|
+
#wpsl-direction-details,
|
432
|
+
#wpsl-gmap {
|
433
|
+
height: 350px !important;
|
434
|
+
}
|
435
|
+
|
436
|
+
#wpsl-gmap .wpsl-info-window {
|
437
|
+
max-width: 225px !important;
|
438
|
+
}
|
439
|
+
|
440
|
+
.wpsl-input label,
|
441
|
+
#wpsl-radius label,
|
442
|
+
#wpsl-category label {
|
443
|
+
width: 95px;
|
444
|
+
}
|
445
|
+
|
446
|
+
#wpsl-search-input,
|
447
|
+
#wpsl-category .wpsl-dropdown {
|
448
|
+
width: 179px;
|
449
|
+
}
|
450
|
+
</style>
|
451
|
+
<div id="wpsl-wrap">
|
452
|
+
<div class="wpsl-search wpsl-clearfix wpsl-filter">
|
453
|
+
<div id="wpsl-search-wrap">
|
454
|
+
<form autocomplete="off">
|
455
|
+
<div class="wpsl-input">
|
456
|
+
<div><label for="wpsl-search-input">Your location</label></div>
|
457
|
+
<input id="wpsl-search-input" type="text" value="" name="wpsl-search-input" placeholder="" aria-required="true">
|
458
|
+
</div>
|
459
|
+
<div class="wpsl-select-wrap">
|
460
|
+
<div id="wpsl-radius">
|
461
|
+
<label for="wpsl-radius-dropdown">Search radius</label>
|
462
|
+
<select id="wpsl-radius-dropdown" class="wpsl-dropdown" name="wpsl-radius">
|
463
|
+
<option value="10">10 mi</option>
|
464
|
+
<option value="25">25 mi</option>
|
465
|
+
<option selected value="50">50 mi</option>
|
466
|
+
<option value="100">100 mi</option>
|
467
|
+
<option value="200">200 mi</option>
|
468
|
+
<option value="500">500 mi</option>
|
469
|
+
</select>
|
470
|
+
</div>
|
471
|
+
</div>
|
472
|
+
<div class="wpsl-search-btn-wrap"><input id="wpsl-search-btn" type="submit" value="Search"></div>
|
473
|
+
</form>
|
474
|
+
</div>
|
475
|
+
</div>
|
476
|
+
<div id="wpsl-gmap" class="wpsl-gmap-canvas"></div>
|
477
|
+
<div id="wpsl-result-list">
|
478
|
+
<div id="wpsl-stores">
|
479
|
+
<ul></ul>
|
480
|
+
</div>
|
481
|
+
<div id="wpsl-direction-details">
|
482
|
+
<ul></ul>
|
483
|
+
</div>
|
484
|
+
</div>
|
485
|
+
</div>
|
486
|
+
|
487
|
+
</div>
|
488
|
+
<!-- .et_pb_code_inner -->
|
489
|
+
</div>
|
490
|
+
<!-- .et_pb_code -->
|
491
|
+
</div>
|
492
|
+
<!-- .et_pb_column -->
|
493
|
+
|
494
|
+
|
495
|
+
</div>
|
496
|
+
<!-- .et_pb_row -->
|
497
|
+
<div class=" et_pb_row et_pb_row_2">
|
498
|
+
<div class="et_pb_column et_pb_column_4_4 et_pb_column_2 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
499
|
+
|
500
|
+
|
501
|
+
<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left et_pb_text_1">
|
502
|
+
|
503
|
+
|
504
|
+
<div class="et_pb_text_inner">
|
505
|
+
<h3>All Locations</h3>
|
506
|
+
</div>
|
507
|
+
</div>
|
508
|
+
<!-- .et_pb_text -->
|
509
|
+
</div>
|
510
|
+
<!-- .et_pb_column -->
|
511
|
+
|
512
|
+
|
513
|
+
</div>
|
514
|
+
<!-- .et_pb_row -->
|
515
|
+
<div class=" et_pb_row et_pb_row_3">
|
516
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_3 et_pb_css_mix_blend_mode_passthrough">
|
517
|
+
|
518
|
+
|
519
|
+
<div class="et_pb_code et_pb_module et_pb_code_1">
|
520
|
+
|
521
|
+
|
522
|
+
<div class="et_pb_code_inner">
|
523
|
+
<style>
|
524
|
+
.carewellBookNowTime {
|
525
|
+
color: #d41f28;
|
526
|
+
font-size: 18px;
|
527
|
+
font-weight: bold;
|
528
|
+
}
|
529
|
+
</style>
|
530
|
+
|
531
|
+
<div style="float:left">
|
532
|
+
<div style="font-size: 24px"><strong>BILLERICA, MA
|
533
|
+
</strong></div>
|
534
|
+
|
535
|
+
<div>
|
536
|
+
<a href="tel:9783622443" class="billerica">978.362.2443</a>
|
537
|
+
</div>
|
538
|
+
|
539
|
+
<div>Open Everyday 8AM-8PM
|
540
|
+
</div>
|
541
|
+
|
542
|
+
<div style="padding-top:35px">
|
543
|
+
<strong>Next Available:</strong>
|
544
|
+
</div>
|
545
|
+
|
546
|
+
<div id="carewellBookNowTimebillericaprimary" class="carewellBookNowTime">
|
547
|
+
</div>
|
548
|
+
</div>
|
549
|
+
</div>
|
550
|
+
<!-- .et_pb_code_inner -->
|
551
|
+
</div>
|
552
|
+
<!-- .et_pb_code -->
|
553
|
+
</div>
|
554
|
+
<!-- .et_pb_column -->
|
555
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_4 et_pb_css_mix_blend_mode_passthrough">
|
556
|
+
|
557
|
+
|
558
|
+
<div class="et_pb_code et_pb_module et_pb_code_2">
|
559
|
+
|
560
|
+
|
561
|
+
<div class="et_pb_code_inner">
|
562
|
+
<div style="float: left; align:bottom">
|
563
|
+
<div style="padding-top: 35px">
|
564
|
+
<a href="https://www.google.com/maps/place/510+Boston+Rd,+Billerica,+MA+01821/@42.553387,-71.263859,16z/data=!4m5!3m4!1s0x89e3a1ea01cf7661:0x409907aaf110e0ca!8m2!3d42.5533779!4d-71.2638671?hl=en-US" target="_blank"><button class="button-red">Map it</button></a>
|
565
|
+
</div>
|
566
|
+
|
567
|
+
<div style="padding-top: 35px">
|
568
|
+
<a href="/locations/billerica-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
569
|
+
</div>
|
570
|
+
</div>
|
571
|
+
</div>
|
572
|
+
<!-- .et_pb_code_inner -->
|
573
|
+
</div>
|
574
|
+
<!-- .et_pb_code -->
|
575
|
+
</div>
|
576
|
+
<!-- .et_pb_column -->
|
577
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_5 et_pb_css_mix_blend_mode_passthrough">
|
578
|
+
|
579
|
+
|
580
|
+
<div class="et_pb_code et_pb_module et_pb_code_3">
|
581
|
+
|
582
|
+
|
583
|
+
<div class="et_pb_code_inner">
|
584
|
+
<style>
|
585
|
+
.carewellBookNowTime {
|
586
|
+
color: #d41f28;
|
587
|
+
font-size: 18px;
|
588
|
+
font-weight: bold;
|
589
|
+
}
|
590
|
+
</style>
|
591
|
+
|
592
|
+
<div style="float:left">
|
593
|
+
<div style="font-size: 24px"><strong>CAMBRIDGE FRESH POND
|
594
|
+
</strong></div>
|
595
|
+
|
596
|
+
<div>
|
597
|
+
<a href="tel:8577061107" class="fresh-pond"> 857.706.1107</a>
|
598
|
+
</div>
|
599
|
+
|
600
|
+
<div>Mon-Fri 8AM-8PM Sat & Sun 9AM-5pm
|
601
|
+
</div>
|
602
|
+
|
603
|
+
<div style="padding-top:35px">
|
604
|
+
<strong>Next Available:</strong>
|
605
|
+
</div>
|
606
|
+
|
607
|
+
<div id="carewellBookNowTimecambridgeconcordprimary" class="carewellBookNowTime">
|
608
|
+
</div>
|
609
|
+
</div>
|
610
|
+
</div>
|
611
|
+
<!-- .et_pb_code_inner -->
|
612
|
+
</div>
|
613
|
+
<!-- .et_pb_code -->
|
614
|
+
</div>
|
615
|
+
<!-- .et_pb_column -->
|
616
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_6 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
617
|
+
|
618
|
+
|
619
|
+
<div class="et_pb_code et_pb_module et_pb_code_4">
|
620
|
+
|
621
|
+
|
622
|
+
<div class="et_pb_code_inner">
|
623
|
+
<div style="float: left; align:bottom">
|
624
|
+
<div style="padding-top: 35px">
|
625
|
+
<a href="https://www.google.com/maps/place/601+Concord+Ave,+Cambridge,+MA+02138/@42.388662,-71.144125,15z/data=!4m5!3m4!1s0x89e3770a6464d861:0x96298148e1aa24f0!8m2!3d42.3886619!4d-71.1441251?ll=42.388662,-71.144125&z=15&t=m&hl=en-US&gl=US&mapclient=embed&q=601+Concord+Ave+Cambridge,+MA+02138"
|
626
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
627
|
+
</div>
|
628
|
+
|
629
|
+
<div style="padding-top: 35px">
|
630
|
+
<a href="/locations/cambridge-ma-fresh-pond-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
631
|
+
</div>
|
632
|
+
</div>
|
633
|
+
</div>
|
634
|
+
<!-- .et_pb_code_inner -->
|
635
|
+
</div>
|
636
|
+
<!-- .et_pb_code -->
|
637
|
+
</div>
|
638
|
+
<!-- .et_pb_column -->
|
639
|
+
|
640
|
+
|
641
|
+
</div>
|
642
|
+
<!-- .et_pb_row -->
|
643
|
+
<div class=" et_pb_row et_pb_row_4">
|
644
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_7 et_pb_css_mix_blend_mode_passthrough">
|
645
|
+
|
646
|
+
|
647
|
+
<div class="et_pb_code et_pb_module et_pb_code_5">
|
648
|
+
|
649
|
+
|
650
|
+
<div class="et_pb_code_inner">
|
651
|
+
<style>
|
652
|
+
.carewellBookNowTime {
|
653
|
+
color: #d41f28;
|
654
|
+
font-size: 18px;
|
655
|
+
font-weight: bold;
|
656
|
+
}
|
657
|
+
</style>
|
658
|
+
|
659
|
+
<div style="float:left">
|
660
|
+
<div style="font-size: 24px">
|
661
|
+
<strong>CAMBRIDGE INMAN</strong>
|
662
|
+
</div>
|
663
|
+
|
664
|
+
<div>
|
665
|
+
<a href="tel:6177144534" class="inman-square"> 617.714.4534</a>
|
666
|
+
</div>
|
667
|
+
|
668
|
+
<div>Open Mon-Fri 8AM-8PM Sat & Sun 9AM-6PM
|
669
|
+
</div>
|
670
|
+
|
671
|
+
<div style="padding-top:35px">
|
672
|
+
<strong>Next Available:</strong>
|
673
|
+
</div>
|
674
|
+
|
675
|
+
<div id="carewellBookNowTimecambridgeprimary" class="carewellBookNowTime">
|
676
|
+
</div>
|
677
|
+
</div>
|
678
|
+
</div>
|
679
|
+
<!-- .et_pb_code_inner -->
|
680
|
+
</div>
|
681
|
+
<!-- .et_pb_code -->
|
682
|
+
</div>
|
683
|
+
<!-- .et_pb_column -->
|
684
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_8 et_pb_css_mix_blend_mode_passthrough">
|
685
|
+
|
686
|
+
|
687
|
+
<div class="et_pb_code et_pb_module et_pb_code_6">
|
688
|
+
|
689
|
+
|
690
|
+
<div class="et_pb_code_inner">
|
691
|
+
<div style="float: left; align:bottom">
|
692
|
+
<div style="padding-top: 35px">
|
693
|
+
<a href="https://www.google.com/maps/place/1400+Cambridge+St,+Cambridge,+MA+02138/@42.373625,-71.10118,16z/data=!4m5!3m4!1s0x89e3774c70ee4ec9:0xac586fdb6fdd5167!8m2!3d42.3736248!4d-71.1011803?ll=42.373625,-71.10118&z=16&t=m&hl=en-US&gl=US&mapclient=embed&q=1400+Cambridge+St+Cambridge,+MA+02138"
|
694
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
695
|
+
</div>
|
696
|
+
|
697
|
+
<div style="padding-top: 35px">
|
698
|
+
<a href="/locations/cambridge-ma-inman-square-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
699
|
+
</div>
|
700
|
+
</div>
|
701
|
+
</div>
|
702
|
+
<!-- .et_pb_code_inner -->
|
703
|
+
</div>
|
704
|
+
<!-- .et_pb_code -->
|
705
|
+
</div>
|
706
|
+
<!-- .et_pb_column -->
|
707
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_9 et_pb_css_mix_blend_mode_passthrough">
|
708
|
+
|
709
|
+
|
710
|
+
<div class="et_pb_code et_pb_module et_pb_code_7">
|
711
|
+
|
712
|
+
|
713
|
+
<div class="et_pb_code_inner">
|
714
|
+
<style>
|
715
|
+
.carewellBookNowTime {
|
716
|
+
color: #d41f28;
|
717
|
+
font-size: 18px;
|
718
|
+
font-weight: bold;
|
719
|
+
}
|
720
|
+
</style>
|
721
|
+
|
722
|
+
<div style="float:left">
|
723
|
+
<div style="font-size: 24px">
|
724
|
+
<strong>FITCHBURG, MA</strong>
|
725
|
+
</div>
|
726
|
+
|
727
|
+
<div>
|
728
|
+
<a href="tel:9786963547" class="fitchburg"> 978.696.3547</a>
|
729
|
+
</div>
|
730
|
+
|
731
|
+
<div>Open Everyday 8AM-8PM
|
732
|
+
</div>
|
733
|
+
|
734
|
+
<div style="padding-top:35px">
|
735
|
+
<strong>Next Available:</strong>
|
736
|
+
</div>
|
737
|
+
|
738
|
+
<div id="carewellBookNowTimefitchburgprimary" class="carewellBookNowTime">
|
739
|
+
</div>
|
740
|
+
</div>
|
741
|
+
</div>
|
742
|
+
<!-- .et_pb_code_inner -->
|
743
|
+
</div>
|
744
|
+
<!-- .et_pb_code -->
|
745
|
+
</div>
|
746
|
+
<!-- .et_pb_column -->
|
747
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_10 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
748
|
+
|
749
|
+
|
750
|
+
<div class="et_pb_code et_pb_module et_pb_code_8">
|
751
|
+
|
752
|
+
|
753
|
+
<div class="et_pb_code_inner">
|
754
|
+
<div style="float: left; align:bottom">
|
755
|
+
<div style="padding-top: 35px">
|
756
|
+
<a href="https://www.google.com/maps/place/380+John+Fitch+Hwy,+Fitchburg,+MA+01420/@42.5808891,-71.7760641,17z/data=!3m1!4b1!4m5!3m4!1s0x89e3e62e030f52c9:0x7f072d42bff8322d!8m2!3d42.5808891!4d-71.7738754" target="_blank"><button class="button-red">Map it</button></a>
|
757
|
+
</div>
|
758
|
+
|
759
|
+
<div style="padding-top: 35px">
|
760
|
+
<a href="/locations/fitchburg-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
761
|
+
</div>
|
762
|
+
</div>
|
763
|
+
</div>
|
764
|
+
<!-- .et_pb_code_inner -->
|
765
|
+
</div>
|
766
|
+
<!-- .et_pb_code -->
|
767
|
+
</div>
|
768
|
+
<!-- .et_pb_column -->
|
769
|
+
|
770
|
+
|
771
|
+
</div>
|
772
|
+
<!-- .et_pb_row -->
|
773
|
+
<div class=" et_pb_row et_pb_row_5">
|
774
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_11 et_pb_css_mix_blend_mode_passthrough">
|
775
|
+
|
776
|
+
|
777
|
+
<div class="et_pb_code et_pb_module et_pb_code_9">
|
778
|
+
|
779
|
+
|
780
|
+
<div class="et_pb_code_inner">
|
781
|
+
<style>
|
782
|
+
.carewellBookNowTime {
|
783
|
+
color: #d41f28;
|
784
|
+
font-size: 18px;
|
785
|
+
font-weight: bold;
|
786
|
+
}
|
787
|
+
</style>
|
788
|
+
|
789
|
+
<div style="float:left">
|
790
|
+
<div style="font-size: 24px">
|
791
|
+
<strong>FRAMINGHAM, MA</strong>
|
792
|
+
</div>
|
793
|
+
|
794
|
+
<div>
|
795
|
+
<a href="tel:5088617375" class="framingham"> 508.861.7375</a>
|
796
|
+
</div>
|
797
|
+
|
798
|
+
<div>Open Mon-Fri 8AM-8PM Sat & Sun 9AM-6PM
|
799
|
+
</div>
|
800
|
+
|
801
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
802
|
+
|
803
|
+
<div id="carewellBookNowTimeframinghamprimary" class="carewellBookNowTime">
|
804
|
+
</div>
|
805
|
+
</div>
|
806
|
+
</div>
|
807
|
+
<!-- .et_pb_code_inner -->
|
808
|
+
</div>
|
809
|
+
<!-- .et_pb_code -->
|
810
|
+
</div>
|
811
|
+
<!-- .et_pb_column -->
|
812
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_12 et_pb_css_mix_blend_mode_passthrough">
|
813
|
+
|
814
|
+
|
815
|
+
<div class="et_pb_code et_pb_module et_pb_code_10">
|
816
|
+
|
817
|
+
|
818
|
+
<div class="et_pb_code_inner">
|
819
|
+
<div style="float: left; align:bottom">
|
820
|
+
<div style="padding-top: 35px">
|
821
|
+
<a href="https://www.google.com/maps/place/CareWell+Urgent+Care+Framingham/@42.298195,-71.394985,16z/data=!4m5!3m4!1s0x89e388889a95d869:0xbff8b346c9e193da!8m2!3d42.2982099!4d-71.3950769?hl=en-US" target="_blank"><button class="button-red">Map it</button></a>
|
822
|
+
</div>
|
823
|
+
|
824
|
+
<div style="padding-top: 35px">
|
825
|
+
<a href="/locations/framingham-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
826
|
+
</div>
|
827
|
+
</div>
|
828
|
+
</div>
|
829
|
+
<!-- .et_pb_code_inner -->
|
830
|
+
</div>
|
831
|
+
<!-- .et_pb_code -->
|
832
|
+
</div>
|
833
|
+
<!-- .et_pb_column -->
|
834
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_13 et_pb_css_mix_blend_mode_passthrough">
|
835
|
+
|
836
|
+
|
837
|
+
<div class="et_pb_code et_pb_module et_pb_code_11">
|
838
|
+
|
839
|
+
|
840
|
+
<div class="et_pb_code_inner">
|
841
|
+
<style>
|
842
|
+
.carewellBookNowTime {
|
843
|
+
color: #d41f28;
|
844
|
+
font-size: 18px;
|
845
|
+
font-weight: bold;
|
846
|
+
}
|
847
|
+
</style>
|
848
|
+
|
849
|
+
<div style="float:left">
|
850
|
+
<div style="font-size: 24px">
|
851
|
+
<strong>LEXINGTON, MA</strong>
|
852
|
+
</div>
|
853
|
+
|
854
|
+
<div>
|
855
|
+
<a href="tel:7815384526" class="lexington"> 781.538.4526</a>
|
856
|
+
</div>
|
857
|
+
|
858
|
+
<div>Open Weekdays 8AM-8PM Sat & Sun 9AM-6PM
|
859
|
+
</div>
|
860
|
+
|
861
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
862
|
+
|
863
|
+
<div id="carewellBookNowTimelexingtonprimary" class="carewellBookNowTime">
|
864
|
+
</div>
|
865
|
+
|
866
|
+
</div>
|
867
|
+
</div>
|
868
|
+
<!-- .et_pb_code_inner -->
|
869
|
+
</div>
|
870
|
+
<!-- .et_pb_code -->
|
871
|
+
</div>
|
872
|
+
<!-- .et_pb_column -->
|
873
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_14 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
874
|
+
|
875
|
+
|
876
|
+
<div class="et_pb_code et_pb_module et_pb_code_12">
|
877
|
+
|
878
|
+
|
879
|
+
<div class="et_pb_code_inner">
|
880
|
+
<div style="float: left; align:bottom">
|
881
|
+
<div style="padding-top: 35px">
|
882
|
+
<a href="https://www.google.com/maps/place/58+Bedford+St,+Lexington,+MA+02420/@42.453711,-71.234542,17z/data=!4m5!3m4!1s0x89e39dd6b4cb3e57:0xac6bb87f633e7885!8m2!3d42.4533311!4d-71.2328143?ll=42.453711,-71.234542&z=17&t=m&hl=en-US&gl=US&mapclient=embed&q=58+Bedford+St+Lexington,+MA+02420"
|
883
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
884
|
+
</div>
|
885
|
+
|
886
|
+
<div style="padding-top: 35px">
|
887
|
+
<a href="/locations/lexington-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
888
|
+
</div>
|
889
|
+
</div>
|
890
|
+
</div>
|
891
|
+
<!-- .et_pb_code_inner -->
|
892
|
+
</div>
|
893
|
+
<!-- .et_pb_code -->
|
894
|
+
</div>
|
895
|
+
<!-- .et_pb_column -->
|
896
|
+
|
897
|
+
|
898
|
+
</div>
|
899
|
+
<!-- .et_pb_row -->
|
900
|
+
<div class=" et_pb_row et_pb_row_6">
|
901
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_15 et_pb_css_mix_blend_mode_passthrough">
|
902
|
+
|
903
|
+
|
904
|
+
<div class="et_pb_code et_pb_module et_pb_code_13">
|
905
|
+
|
906
|
+
|
907
|
+
<div class="et_pb_code_inner">
|
908
|
+
<style>
|
909
|
+
.carewellBookNowTime {
|
910
|
+
color: #d41f28;
|
911
|
+
font-size: 18px;
|
912
|
+
font-weight: bold;
|
913
|
+
}
|
914
|
+
</style>
|
915
|
+
|
916
|
+
<div style="float:left">
|
917
|
+
<div style="font-size: 24px">
|
918
|
+
<strong>MARLBOROUGH, MA</strong>
|
919
|
+
</div>
|
920
|
+
|
921
|
+
<div>
|
922
|
+
<a href="tel:5086308989" class="marlborough"> 508.630.8989</a>
|
923
|
+
</div>
|
924
|
+
|
925
|
+
<div>Open Everyday 8AM-8PM
|
926
|
+
</div>
|
927
|
+
|
928
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
929
|
+
|
930
|
+
<div id="carewellBookNowTimemarlboroughprimary" class="carewellBookNowTime">
|
931
|
+
</div>
|
932
|
+
</div>
|
933
|
+
</div>
|
934
|
+
<!-- .et_pb_code_inner -->
|
935
|
+
</div>
|
936
|
+
<!-- .et_pb_code -->
|
937
|
+
</div>
|
938
|
+
<!-- .et_pb_column -->
|
939
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_16 et_pb_css_mix_blend_mode_passthrough">
|
940
|
+
|
941
|
+
|
942
|
+
<div class="et_pb_code et_pb_module et_pb_code_14">
|
943
|
+
|
944
|
+
|
945
|
+
<div class="et_pb_code_inner">
|
946
|
+
<div style="float: left; align:bottom">
|
947
|
+
<div style="padding-top: 35px">
|
948
|
+
<a href="https://www.google.com/maps/place/757+Boston+Post+Rd+E,+Marlborough,+MA+01752/@42.3508106,-71.5021602,17z/data=!3m1!4b1!4m5!3m4!1s0x89e38c0a9f8abd67:0xb91968b1b4bfef97!8m2!3d42.3508106!4d-71.4999715?sa=X&ved=0ahUKEwiGi5fCjYXPAhXBJCYKHR8eCzgQ8gEIHTAA"
|
949
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
950
|
+
</div>
|
951
|
+
|
952
|
+
<div style="padding-top: 35px">
|
953
|
+
<a href="/locations/marlborough-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
954
|
+
</div>
|
955
|
+
</div>
|
956
|
+
</div>
|
957
|
+
<!-- .et_pb_code_inner -->
|
958
|
+
</div>
|
959
|
+
<!-- .et_pb_code -->
|
960
|
+
</div>
|
961
|
+
<!-- .et_pb_column -->
|
962
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_17 et_pb_css_mix_blend_mode_passthrough">
|
963
|
+
|
964
|
+
|
965
|
+
<div class="et_pb_code et_pb_module et_pb_code_15">
|
966
|
+
|
967
|
+
|
968
|
+
<div class="et_pb_code_inner">
|
969
|
+
<style>
|
970
|
+
.carewellBookNowTime {
|
971
|
+
color: #d41f28;
|
972
|
+
font-size: 18px;
|
973
|
+
font-weight: bold;
|
974
|
+
}
|
975
|
+
</style>
|
976
|
+
|
977
|
+
<div style="float:left">
|
978
|
+
<div style="font-size: 24px">
|
979
|
+
<strong>NEEDHAM, MA</strong>
|
980
|
+
</div>
|
981
|
+
|
982
|
+
<div>
|
983
|
+
<a href="tel:7814001383" class="needham"> 781.400.1383</a>
|
984
|
+
</div>
|
985
|
+
|
986
|
+
<div>Open Mon-Fri 8AM-8PM Sat & Sun 8AM-8PM
|
987
|
+
</div>
|
988
|
+
|
989
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
990
|
+
<div id="carewellBookNowTimeneedhamprimary" class="carewellBookNowTime">
|
991
|
+
</div>
|
992
|
+
</div>
|
993
|
+
</div>
|
994
|
+
<!-- .et_pb_code_inner -->
|
995
|
+
</div>
|
996
|
+
<!-- .et_pb_code -->
|
997
|
+
</div>
|
998
|
+
<!-- .et_pb_column -->
|
999
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_18 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
1000
|
+
|
1001
|
+
|
1002
|
+
<div class="et_pb_code et_pb_module et_pb_code_16">
|
1003
|
+
|
1004
|
+
|
1005
|
+
<div class="et_pb_code_inner">
|
1006
|
+
<div style="float: left; align:bottom">
|
1007
|
+
<div style="padding-top: 35px">
|
1008
|
+
<a href="https://www.google.com/maps/place/922+Highland+Ave,+Needham,+MA+02494/@42.292714,-71.235204,16z/data=!4m5!3m4!1s0x89e3819c176cd42d:0x77a8a641a291509f!8m2!3d42.2927144!4d-71.2352042?hl=en-US" target="_blank"><button class="button-red">Map it</button></a>
|
1009
|
+
</div>
|
1010
|
+
|
1011
|
+
<div style="padding-top: 35px">
|
1012
|
+
<a href="/locations/needham-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1013
|
+
</div>
|
1014
|
+
</div>
|
1015
|
+
</div>
|
1016
|
+
<!-- .et_pb_code_inner -->
|
1017
|
+
</div>
|
1018
|
+
<!-- .et_pb_code -->
|
1019
|
+
</div>
|
1020
|
+
<!-- .et_pb_column -->
|
1021
|
+
|
1022
|
+
|
1023
|
+
</div>
|
1024
|
+
<!-- .et_pb_row -->
|
1025
|
+
<div class=" et_pb_row et_pb_row_7">
|
1026
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_19 et_pb_css_mix_blend_mode_passthrough">
|
1027
|
+
|
1028
|
+
|
1029
|
+
<div class="et_pb_code et_pb_module et_pb_code_17">
|
1030
|
+
|
1031
|
+
|
1032
|
+
<div class="et_pb_code_inner">
|
1033
|
+
<style>
|
1034
|
+
.carewellBookNowTime {
|
1035
|
+
color: #d41f28;
|
1036
|
+
font-size: 18px;
|
1037
|
+
font-weight: bold;
|
1038
|
+
}
|
1039
|
+
</style>
|
1040
|
+
|
1041
|
+
<div style="float:left">
|
1042
|
+
<div style="font-size: 24px">
|
1043
|
+
<strong>NORTHBOROUGH, MA</strong>
|
1044
|
+
</div>
|
1045
|
+
|
1046
|
+
<div>
|
1047
|
+
<a href="tel:5084668677" class="northborough"> 508.466.8677</a>
|
1048
|
+
</div>
|
1049
|
+
|
1050
|
+
<div>Open Everyday 8AM-8PM
|
1051
|
+
</div>
|
1052
|
+
|
1053
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1054
|
+
|
1055
|
+
<div id="carewellBookNowTimenorthboroughprimary" class="carewellBookNowTime">
|
1056
|
+
</div>
|
1057
|
+
</div>
|
1058
|
+
</div>
|
1059
|
+
<!-- .et_pb_code_inner -->
|
1060
|
+
</div>
|
1061
|
+
<!-- .et_pb_code -->
|
1062
|
+
</div>
|
1063
|
+
<!-- .et_pb_column -->
|
1064
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_20 et_pb_css_mix_blend_mode_passthrough">
|
1065
|
+
|
1066
|
+
|
1067
|
+
<div class="et_pb_code et_pb_module et_pb_code_18">
|
1068
|
+
|
1069
|
+
|
1070
|
+
<div class="et_pb_code_inner">
|
1071
|
+
<div style="float: left; align:bottom">
|
1072
|
+
<div style="padding-top: 35px">
|
1073
|
+
<a href="https://www.google.com/maps/place/333+SW+Cutoff,+Northborough,+MA+01532/@42.285347,-71.667622,16z/data=!4m5!3m4!1s0x89e409f57c1f31d7:0x9c7b06570159c24!8m2!3d42.285347!4d-71.667622?hl=en-US" target="_blank"><button class="button-red">Map it</button></a>
|
1074
|
+
</div>
|
1075
|
+
|
1076
|
+
<div style="padding-top: 35px">
|
1077
|
+
<a href="/locations/northborough-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1078
|
+
</div>
|
1079
|
+
</div>
|
1080
|
+
</div>
|
1081
|
+
<!-- .et_pb_code_inner -->
|
1082
|
+
</div>
|
1083
|
+
<!-- .et_pb_code -->
|
1084
|
+
</div>
|
1085
|
+
<!-- .et_pb_column -->
|
1086
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_21 et_pb_css_mix_blend_mode_passthrough">
|
1087
|
+
|
1088
|
+
|
1089
|
+
<div class="et_pb_code et_pb_module et_pb_code_19">
|
1090
|
+
|
1091
|
+
|
1092
|
+
<div class="et_pb_code_inner">
|
1093
|
+
<style>
|
1094
|
+
.carewellBookNowTime {
|
1095
|
+
color: #d41f28;
|
1096
|
+
font-size: 18px;
|
1097
|
+
font-weight: bold;
|
1098
|
+
}
|
1099
|
+
</style>
|
1100
|
+
|
1101
|
+
<div style="float:left">
|
1102
|
+
<div style="font-size: 24px; word-wrap: break-word">
|
1103
|
+
<strong>NORWELL, MA</strong>
|
1104
|
+
</div>
|
1105
|
+
|
1106
|
+
<div>
|
1107
|
+
<a href="tel:7814213503" class="norwell"> 781.421.3503</a>
|
1108
|
+
</div>
|
1109
|
+
|
1110
|
+
<div>Open Everyday 8AM-8PM
|
1111
|
+
</div>
|
1112
|
+
|
1113
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1114
|
+
|
1115
|
+
<div id="carewellBookNowTimenorwellprimary" class="carewellBookNowTime">
|
1116
|
+
</div>
|
1117
|
+
|
1118
|
+
</div>
|
1119
|
+
</div>
|
1120
|
+
<!-- .et_pb_code_inner -->
|
1121
|
+
</div>
|
1122
|
+
<!-- .et_pb_code -->
|
1123
|
+
</div>
|
1124
|
+
<!-- .et_pb_column -->
|
1125
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_22 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
1126
|
+
|
1127
|
+
|
1128
|
+
<div class="et_pb_code et_pb_module et_pb_code_20">
|
1129
|
+
|
1130
|
+
|
1131
|
+
<div class="et_pb_code_inner">
|
1132
|
+
<div style="float: left; align:bottom">
|
1133
|
+
<div style="padding-top: 35px">
|
1134
|
+
<a href="https://www.google.com/maps/place/42+Washington+Park+Dr,+Norwell,+MA+02061/@42.159775,-70.865363,16z/data=!4m5!3m4!1s0x89e49e2dd1acc1dd:0x645dd3cd7acd8284!8m2!3d42.159775!4d-70.8653626?ll=42.159775,-70.865363&z=16&t=m&hl=en-US&gl=US&mapclient=embed&q=42+Washington+Park+Dr+Norwell,+MA+02061"
|
1135
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
1136
|
+
</div>
|
1137
|
+
|
1138
|
+
<div style="padding-top: 35px">
|
1139
|
+
<a href="/locations/norwell-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1140
|
+
</div>
|
1141
|
+
</div>
|
1142
|
+
</div>
|
1143
|
+
<!-- .et_pb_code_inner -->
|
1144
|
+
</div>
|
1145
|
+
<!-- .et_pb_code -->
|
1146
|
+
</div>
|
1147
|
+
<!-- .et_pb_column -->
|
1148
|
+
|
1149
|
+
|
1150
|
+
</div>
|
1151
|
+
<!-- .et_pb_row -->
|
1152
|
+
<div class=" et_pb_row et_pb_row_8">
|
1153
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_23 et_pb_css_mix_blend_mode_passthrough">
|
1154
|
+
|
1155
|
+
|
1156
|
+
<div class="et_pb_code et_pb_module et_pb_code_21">
|
1157
|
+
|
1158
|
+
|
1159
|
+
<div class="et_pb_code_inner">
|
1160
|
+
<style>
|
1161
|
+
.carewellBookNowTime {
|
1162
|
+
color: #d41f28;
|
1163
|
+
font-size: 18px;
|
1164
|
+
font-weight: bold;
|
1165
|
+
}
|
1166
|
+
</style>
|
1167
|
+
|
1168
|
+
<div style="float:left">
|
1169
|
+
<div style="font-size: 24px">
|
1170
|
+
<strong>PEABODY, MA</strong>
|
1171
|
+
</div>
|
1172
|
+
|
1173
|
+
<div>
|
1174
|
+
<a href="tel:9788265950" class="peabody"> 978.826.5950</a>
|
1175
|
+
</div>
|
1176
|
+
|
1177
|
+
<div>Open Everyday 8AM-8PM
|
1178
|
+
</div>
|
1179
|
+
|
1180
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1181
|
+
|
1182
|
+
<div id="carewellBookNowTimepeabodyprimary" class="carewellBookNowTime">
|
1183
|
+
</div>
|
1184
|
+
|
1185
|
+
</div>
|
1186
|
+
</div>
|
1187
|
+
<!-- .et_pb_code_inner -->
|
1188
|
+
</div>
|
1189
|
+
<!-- .et_pb_code -->
|
1190
|
+
</div>
|
1191
|
+
<!-- .et_pb_column -->
|
1192
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_24 et_pb_css_mix_blend_mode_passthrough">
|
1193
|
+
|
1194
|
+
|
1195
|
+
<div class="et_pb_code et_pb_module et_pb_code_22">
|
1196
|
+
|
1197
|
+
|
1198
|
+
<div class="et_pb_code_inner">
|
1199
|
+
<div style="float: left; align:bottom">
|
1200
|
+
<div style="padding-top: 35px">
|
1201
|
+
<a href="https://www.google.com/maps/place/229+Andover+St,+Peabody,+MA+01960/@42.547309,-70.946933,16z/data=!4m5!3m4!1s0x89e313cec61528f1:0x2374d104bafec78a!8m2!3d42.5472943!4d-70.9469548?ll=42.547309,-70.946933&z=16&t=m&hl=en-US&gl=US&mapclient=embed&q=229+Andover+St+Peabody,+MA+01960"
|
1202
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
1203
|
+
</div>
|
1204
|
+
|
1205
|
+
<div style="padding-top: 35px">
|
1206
|
+
<a href="/locations/peabody-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1207
|
+
</div>
|
1208
|
+
</div>
|
1209
|
+
</div>
|
1210
|
+
<!-- .et_pb_code_inner -->
|
1211
|
+
</div>
|
1212
|
+
<!-- .et_pb_code -->
|
1213
|
+
</div>
|
1214
|
+
<!-- .et_pb_column -->
|
1215
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_25 et_pb_css_mix_blend_mode_passthrough">
|
1216
|
+
|
1217
|
+
|
1218
|
+
<div class="et_pb_code et_pb_module et_pb_code_23">
|
1219
|
+
|
1220
|
+
|
1221
|
+
<div class="et_pb_code_inner">
|
1222
|
+
<style>
|
1223
|
+
.carewellBookNowTime {
|
1224
|
+
color: #d41f28;
|
1225
|
+
font-size: 18px;
|
1226
|
+
font-weight: bold;
|
1227
|
+
}
|
1228
|
+
</style>
|
1229
|
+
|
1230
|
+
<div style="float:left">
|
1231
|
+
<div style="font-size: 24px">
|
1232
|
+
<strong>SOMERVILLE, MA</strong>
|
1233
|
+
</div>
|
1234
|
+
|
1235
|
+
<div>
|
1236
|
+
<a href="tel:6179966987" class="somerville"> 617.996.6987</a>
|
1237
|
+
</div>
|
1238
|
+
|
1239
|
+
<div>Open Mon-Fri 8AM-8PM Sat & Sun 9AM-5PM
|
1240
|
+
</div>
|
1241
|
+
|
1242
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1243
|
+
|
1244
|
+
<div id="carewellBookNowTimesomervilleprimary" class="carewellBookNowTime">
|
1245
|
+
</div>
|
1246
|
+
</div>
|
1247
|
+
</div>
|
1248
|
+
<!-- .et_pb_code_inner -->
|
1249
|
+
</div>
|
1250
|
+
<!-- .et_pb_code -->
|
1251
|
+
</div>
|
1252
|
+
<!-- .et_pb_column -->
|
1253
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_26 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
1254
|
+
|
1255
|
+
|
1256
|
+
<div class="et_pb_code et_pb_module et_pb_code_24">
|
1257
|
+
|
1258
|
+
|
1259
|
+
<div class="et_pb_code_inner">
|
1260
|
+
<div style="float: left; align:bottom">
|
1261
|
+
<div style="padding-top: 35px">
|
1262
|
+
<a href="https://www.google.com/maps/place/349+Broadway,+Somerville,+MA+02145/@42.3938609,-71.097088,17z/data=!3m1!4b1!4m5!3m4!1s0x89e370d4fb0c6e19:0x20c215a0fb3884c7!8m2!3d42.3938609!4d-71.0948993?sa=X&ved=0ahUKEwjEsPCbjYXPAhVDxSYKHUj6BVUQ8gEIHTAA"
|
1263
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
1264
|
+
</div>
|
1265
|
+
|
1266
|
+
<div style="padding-top: 35px">
|
1267
|
+
<a href="/locations/somerville-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1268
|
+
</div>
|
1269
|
+
</div>
|
1270
|
+
</div>
|
1271
|
+
<!-- .et_pb_code_inner -->
|
1272
|
+
</div>
|
1273
|
+
<!-- .et_pb_code -->
|
1274
|
+
</div>
|
1275
|
+
<!-- .et_pb_column -->
|
1276
|
+
|
1277
|
+
|
1278
|
+
</div>
|
1279
|
+
<!-- .et_pb_row -->
|
1280
|
+
<div class=" et_pb_row et_pb_row_9">
|
1281
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_27 et_pb_css_mix_blend_mode_passthrough">
|
1282
|
+
|
1283
|
+
|
1284
|
+
<div class="et_pb_code et_pb_module et_pb_code_25">
|
1285
|
+
|
1286
|
+
|
1287
|
+
<div class="et_pb_code_inner">
|
1288
|
+
<style>
|
1289
|
+
.carewellBookNowTime {
|
1290
|
+
color: #d41f28;
|
1291
|
+
font-size: 18px;
|
1292
|
+
font-weight: bold;
|
1293
|
+
}
|
1294
|
+
</style>
|
1295
|
+
|
1296
|
+
<div style="float:left">
|
1297
|
+
<div style="font-size: 24px">
|
1298
|
+
<strong>SOUTH DENNIS, MA</strong>
|
1299
|
+
</div>
|
1300
|
+
|
1301
|
+
<div>
|
1302
|
+
<a href="tel:5086947901" class="south-dennis"> 508.694.7901</a>
|
1303
|
+
</div>
|
1304
|
+
|
1305
|
+
<div>Open Everyday 8AM-8PM
|
1306
|
+
</div>
|
1307
|
+
|
1308
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1309
|
+
|
1310
|
+
<div id="carewellBookNowTimedennisprimary" class="carewellBookNowTime">
|
1311
|
+
</div>
|
1312
|
+
|
1313
|
+
</div>
|
1314
|
+
</div>
|
1315
|
+
<!-- .et_pb_code_inner -->
|
1316
|
+
</div>
|
1317
|
+
<!-- .et_pb_code -->
|
1318
|
+
</div>
|
1319
|
+
<!-- .et_pb_column -->
|
1320
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_28 et_pb_css_mix_blend_mode_passthrough">
|
1321
|
+
|
1322
|
+
|
1323
|
+
<div class="et_pb_code et_pb_module et_pb_code_26">
|
1324
|
+
|
1325
|
+
|
1326
|
+
<div class="et_pb_code_inner">
|
1327
|
+
<div style="float: left; align:bottom">
|
1328
|
+
<div style="padding-top: 35px">
|
1329
|
+
<a href="https://www.google.com/maps/place/CareWell+Urgent+Care+South+Dennis/@41.6915212,-70.1579895,12.96z/data=!4m12!1m6!3m5!1s0x0:0x202de1fa4c695013!2sCareWell+Urgent+Care+South+Dennis!8m2!3d41.6934924!4d-70.1521544!3m4!1s0x0:0x202de1fa4c695013!8m2!3d41.6934924!4d-70.1521544?hl=en-US"
|
1330
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
1331
|
+
</div>
|
1332
|
+
|
1333
|
+
<div style="padding-top: 35px">
|
1334
|
+
<a href="/locations/south-dennis-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1335
|
+
</div>
|
1336
|
+
</div>
|
1337
|
+
</div>
|
1338
|
+
<!-- .et_pb_code_inner -->
|
1339
|
+
</div>
|
1340
|
+
<!-- .et_pb_code -->
|
1341
|
+
</div>
|
1342
|
+
<!-- .et_pb_column -->
|
1343
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_29 et_pb_css_mix_blend_mode_passthrough">
|
1344
|
+
|
1345
|
+
|
1346
|
+
<div class="et_pb_code et_pb_module et_pb_code_27">
|
1347
|
+
|
1348
|
+
|
1349
|
+
<div class="et_pb_code_inner">
|
1350
|
+
<style>
|
1351
|
+
.carewellBookNowTime {
|
1352
|
+
color: #d41f28;
|
1353
|
+
font-size: 18px;
|
1354
|
+
font-weight: bold;
|
1355
|
+
}
|
1356
|
+
</style>
|
1357
|
+
|
1358
|
+
<div style="float:left">
|
1359
|
+
<div style="font-size: 24px">
|
1360
|
+
<strong>TEWKSBURY, MA</strong>
|
1361
|
+
</div>
|
1362
|
+
|
1363
|
+
<div>
|
1364
|
+
<a href="tel:9788514683" class="tewksbury"> 978.851.4683</a>
|
1365
|
+
</div>
|
1366
|
+
|
1367
|
+
<div>Open Everyday 8AM-8PM
|
1368
|
+
</div>
|
1369
|
+
|
1370
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1371
|
+
<div id="carewellBookNowTimetewksburyprimary" class="carewellBookNowTime">
|
1372
|
+
</div>
|
1373
|
+
</div>
|
1374
|
+
</div>
|
1375
|
+
<!-- .et_pb_code_inner -->
|
1376
|
+
</div>
|
1377
|
+
<!-- .et_pb_code -->
|
1378
|
+
</div>
|
1379
|
+
<!-- .et_pb_column -->
|
1380
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_30 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
1381
|
+
|
1382
|
+
|
1383
|
+
<div class="et_pb_code et_pb_module et_pb_code_28">
|
1384
|
+
|
1385
|
+
|
1386
|
+
<div class="et_pb_code_inner">
|
1387
|
+
<div style="float: left; align:bottom">
|
1388
|
+
<div style="padding-top: 35px">
|
1389
|
+
<a href="https://www.google.com/maps/place/345+Main+St,+Tewksbury,+MA+01876/@42.622949,-71.266141,16z/data=!4m5!3m4!1s0x89e3a6b7bc906ccb:0xb08992cf4c407897!8m2!3d42.6229492!4d-71.2661407?hl=en-US" target="_blank"><button class="button-red">Map it</button></a>
|
1390
|
+
</div>
|
1391
|
+
|
1392
|
+
<div style="padding-top: 35px">
|
1393
|
+
<a href="/locations/tewskbury-ma-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1394
|
+
</div>
|
1395
|
+
</div>
|
1396
|
+
</div>
|
1397
|
+
<!-- .et_pb_code_inner -->
|
1398
|
+
</div>
|
1399
|
+
<!-- .et_pb_code -->
|
1400
|
+
</div>
|
1401
|
+
<!-- .et_pb_column -->
|
1402
|
+
|
1403
|
+
|
1404
|
+
</div>
|
1405
|
+
<!-- .et_pb_row -->
|
1406
|
+
<div class=" et_pb_row et_pb_row_10">
|
1407
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_31 et_pb_css_mix_blend_mode_passthrough">
|
1408
|
+
|
1409
|
+
|
1410
|
+
<div class="et_pb_code et_pb_module et_pb_code_29">
|
1411
|
+
|
1412
|
+
|
1413
|
+
<div class="et_pb_code_inner">
|
1414
|
+
<style>
|
1415
|
+
.carewellBookNowTime {
|
1416
|
+
color: #d41f28;
|
1417
|
+
font-size: 18px;
|
1418
|
+
font-weight: bold;
|
1419
|
+
}
|
1420
|
+
</style>
|
1421
|
+
|
1422
|
+
<div style="float:left">
|
1423
|
+
<div style="font-size: 24px">
|
1424
|
+
<strong>WORCESTER GREENWOOD, MA</strong>
|
1425
|
+
</div>
|
1426
|
+
|
1427
|
+
<div>
|
1428
|
+
<a href="tel:7744202103" class="worcester-greenwood-st"> 774.420.2103</a>
|
1429
|
+
</div>
|
1430
|
+
|
1431
|
+
<div>Open Everyday 8AM-8PM
|
1432
|
+
</div>
|
1433
|
+
|
1434
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1435
|
+
|
1436
|
+
<div id="carewellBookNowTimeworcestergreenwoodprimary" class="carewellBookNowTime">
|
1437
|
+
</div>
|
1438
|
+
|
1439
|
+
</div>
|
1440
|
+
|
1441
|
+
|
1442
|
+
</div>
|
1443
|
+
<!-- .et_pb_code_inner -->
|
1444
|
+
</div>
|
1445
|
+
<!-- .et_pb_code -->
|
1446
|
+
</div>
|
1447
|
+
<!-- .et_pb_column -->
|
1448
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_32 et_pb_css_mix_blend_mode_passthrough">
|
1449
|
+
|
1450
|
+
|
1451
|
+
<div class="et_pb_code et_pb_module et_pb_code_30">
|
1452
|
+
|
1453
|
+
|
1454
|
+
<div class="et_pb_code_inner">
|
1455
|
+
<div style="float: left; align:bottom">
|
1456
|
+
<div style="padding-top: 35px">
|
1457
|
+
<a href="https://www.google.com/maps/place/348+Greenwood+St,+Worcester,+MA+01607/@42.2133219,-71.7998166,17z/data=!3m1!4b1!4m5!3m4!1s0x89e405a66b98795b:0x9bd7637d6a76565c!8m2!3d42.2133219!4d-71.7976279?hl=en-US" target="_blank"><button class="button-red">Map it</button></a>
|
1458
|
+
</div>
|
1459
|
+
|
1460
|
+
<div style="padding-top: 35px">
|
1461
|
+
<a href="/locations/woresterfair-ma-greenwood-st-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1462
|
+
</div>
|
1463
|
+
</div>
|
1464
|
+
</div>
|
1465
|
+
<!-- .et_pb_code_inner -->
|
1466
|
+
</div>
|
1467
|
+
<!-- .et_pb_code -->
|
1468
|
+
</div>
|
1469
|
+
<!-- .et_pb_column -->
|
1470
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_33 et_pb_css_mix_blend_mode_passthrough">
|
1471
|
+
|
1472
|
+
|
1473
|
+
<div class="et_pb_code et_pb_module et_pb_code_31">
|
1474
|
+
|
1475
|
+
|
1476
|
+
<div class="et_pb_code_inner">
|
1477
|
+
<style>
|
1478
|
+
.carewellBookNowTime {
|
1479
|
+
color: #d41f28;
|
1480
|
+
font-size: 18px;
|
1481
|
+
font-weight: bold;
|
1482
|
+
}
|
1483
|
+
</style>
|
1484
|
+
|
1485
|
+
<div style="float:left">
|
1486
|
+
<div style="font-size: 24px">
|
1487
|
+
<strong>WORCESTER LINCOLN, MA</strong>
|
1488
|
+
</div>
|
1489
|
+
|
1490
|
+
<div>
|
1491
|
+
<a href="tel:7744202111" class="worcester-lincoln-st"> 774.420.2111</a>
|
1492
|
+
</div>
|
1493
|
+
|
1494
|
+
<div>Open Everyday 8AM–8PM
|
1495
|
+
</div>
|
1496
|
+
|
1497
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1498
|
+
|
1499
|
+
<div id="carewellBookNowTimeworcesterlincolnprimary" class="carewellBookNowTime">
|
1500
|
+
</div>
|
1501
|
+
|
1502
|
+
</div>
|
1503
|
+
</div>
|
1504
|
+
<!-- .et_pb_code_inner -->
|
1505
|
+
</div>
|
1506
|
+
<!-- .et_pb_code -->
|
1507
|
+
</div>
|
1508
|
+
<!-- .et_pb_column -->
|
1509
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_34 et_pb_css_mix_blend_mode_passthrough et-last-child">
|
1510
|
+
|
1511
|
+
|
1512
|
+
<div class="et_pb_code et_pb_module et_pb_code_32">
|
1513
|
+
|
1514
|
+
|
1515
|
+
<div class="et_pb_code_inner">
|
1516
|
+
<div style="float: left; align:bottom">
|
1517
|
+
<div style="padding-top: 35px">
|
1518
|
+
<a href="https://www.google.com/maps/place/500+Lincoln+St,+Worcester,+MA+01605/@42.295678,-71.773935,16z/data=!4m5!3m4!1s0x89e407db548239c3:0xf68a67d018b5e452!8m2!3d42.2957092!4d-71.7739269?hl=en-US" target="_blank"><button class="button-red">Map it</button></a>
|
1519
|
+
</div>
|
1520
|
+
|
1521
|
+
<div style="padding-top: 35px">
|
1522
|
+
<a href="/locations/woresterfair-ma-lincoln-st-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1523
|
+
</div>
|
1524
|
+
</div>
|
1525
|
+
</div>
|
1526
|
+
<!-- .et_pb_code_inner -->
|
1527
|
+
</div>
|
1528
|
+
<!-- .et_pb_code -->
|
1529
|
+
</div>
|
1530
|
+
<!-- .et_pb_column -->
|
1531
|
+
|
1532
|
+
|
1533
|
+
</div>
|
1534
|
+
<!-- .et_pb_row -->
|
1535
|
+
<div class=" et_pb_row et_pb_row_11">
|
1536
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_35 et_pb_css_mix_blend_mode_passthrough">
|
1537
|
+
|
1538
|
+
|
1539
|
+
<div class="et_pb_code et_pb_module et_pb_code_33">
|
1540
|
+
|
1541
|
+
|
1542
|
+
<div class="et_pb_code_inner">
|
1543
|
+
<style>
|
1544
|
+
.carewellBookNowTime {
|
1545
|
+
color: #d41f28;
|
1546
|
+
font-size: 18px;
|
1547
|
+
font-weight: bold;
|
1548
|
+
}
|
1549
|
+
</style>
|
1550
|
+
|
1551
|
+
<div style="float:left">
|
1552
|
+
<div style="font-size: 24px">
|
1553
|
+
<strong>WARWICK, RI</strong>
|
1554
|
+
</div>
|
1555
|
+
|
1556
|
+
<div>
|
1557
|
+
<a href="tel:4017737220" class="warwick"> 401.773.7220</a>
|
1558
|
+
</div>
|
1559
|
+
|
1560
|
+
<div>Open Everyday 8AM-8PM
|
1561
|
+
</div>
|
1562
|
+
|
1563
|
+
<div style="padding-top:35px"><strong>Next Available:</strong></div>
|
1564
|
+
|
1565
|
+
<div id="carewellBookNowTimewarwickprimary" class="carewellBookNowTime">
|
1566
|
+
</div>
|
1567
|
+
|
1568
|
+
</div>
|
1569
|
+
</div>
|
1570
|
+
<!-- .et_pb_code_inner -->
|
1571
|
+
</div>
|
1572
|
+
<!-- .et_pb_code -->
|
1573
|
+
</div>
|
1574
|
+
<!-- .et_pb_column -->
|
1575
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_36 et_pb_css_mix_blend_mode_passthrough">
|
1576
|
+
|
1577
|
+
|
1578
|
+
<div class="et_pb_code et_pb_module et_pb_code_34">
|
1579
|
+
|
1580
|
+
|
1581
|
+
<div class="et_pb_code_inner">
|
1582
|
+
<div style="float: left; align:bottom">
|
1583
|
+
<div style="padding-top: 35px">
|
1584
|
+
<a href="https://www.google.com/maps/place/535+Centerville+Rd,+Warwick,+RI+02886/@41.697941,-71.479434,16z/data=!4m5!3m4!1s0x89e44b80452406bb:0x7f9a3fd51c750184!8m2!3d41.6979166!4d-71.4794372?ll=41.697941,-71.479434&z=16&t=m&hl=en-US&gl=US&mapclient=embed&q=535+Centerville+Rd+Warwick,+RI+02886"
|
1585
|
+
target="_blank"><button class="button-red">Map it</button></a>
|
1586
|
+
</div>
|
1587
|
+
|
1588
|
+
<div style="padding-top: 35px">
|
1589
|
+
<a href="/locations/warwick-ri-urgent-care/" target="_blank"><button class="button-red">Book Now</button></a>
|
1590
|
+
</div>
|
1591
|
+
</div>
|
1592
|
+
</div>
|
1593
|
+
<!-- .et_pb_code_inner -->
|
1594
|
+
</div>
|
1595
|
+
<!-- .et_pb_code -->
|
1596
|
+
</div>
|
1597
|
+
<!-- .et_pb_column -->
|
1598
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_37 et_pb_css_mix_blend_mode_passthrough">
|
1599
|
+
|
1600
|
+
|
1601
|
+
<div class="et_pb_code et_pb_module et_pb_code_35">
|
1602
|
+
|
1603
|
+
|
1604
|
+
<div class="et_pb_code_inner">
|
1605
|
+
<script type="text/javascript">
|
1606
|
+
jQuery(function($) {
|
1607
|
+
var carewellBookNowAPIneedhamprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11239/queueID/16650/format/true?callback=?";
|
1608
|
+
$.getJSON(carewellBookNowAPIneedhamprimary, function(data) {
|
1609
|
+
$('#carewellBookNowTimeneedhamprimary').html(data.reservationTime);
|
1610
|
+
});
|
1611
|
+
|
1612
|
+
var carewellBookNowAPIfitchburgprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11328/queueID/17001/format/true?callback=?";
|
1613
|
+
$.getJSON(carewellBookNowAPIfitchburgprimary, function(data) {
|
1614
|
+
$('#carewellBookNowTimefitchburgprimary').html(data.reservationTime);
|
1615
|
+
});
|
1616
|
+
|
1617
|
+
var carewellBookNowAPIdennisprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11236/queueID/16641/format/true?callback=?";
|
1618
|
+
$.getJSON(carewellBookNowAPIdennisprimary, function(data) {
|
1619
|
+
$('#carewellBookNowTimedennisprimary').html(data.reservationTime);
|
1620
|
+
});
|
1621
|
+
|
1622
|
+
var carewellBookNowAPIbillericaprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11242/queueID/16659/format/true?callback=?";
|
1623
|
+
$.getJSON(carewellBookNowAPIbillericaprimary, function(data) {
|
1624
|
+
$('#carewellBookNowTimebillericaprimary').html(data.reservationTime);
|
1625
|
+
});
|
1626
|
+
|
1627
|
+
var carewellBookNowAPIlexingtonprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11244/queueID/16665/format/true?callback=?";
|
1628
|
+
$.getJSON(carewellBookNowAPIlexingtonprimary, function(data) {
|
1629
|
+
$('#carewellBookNowTimelexingtonprimary').html(data.reservationTime);
|
1630
|
+
});
|
1631
|
+
|
1632
|
+
var carewellBookNowAPInorwellprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11238/queueID/16647/format/true?callback=?";
|
1633
|
+
$.getJSON(carewellBookNowAPInorwellprimary, function(data) {
|
1634
|
+
$('#carewellBookNowTimenorwellprimary').html(data.reservationTime);
|
1635
|
+
});
|
1636
|
+
|
1637
|
+
var carewellBookNowAPItewksburyprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11241/queueID/16656/format/true?callback=?";
|
1638
|
+
$.getJSON(carewellBookNowAPItewksburyprimary, function(data) {
|
1639
|
+
$('#carewellBookNowTimetewksburyprimary').html(data.reservationTime);
|
1640
|
+
});
|
1641
|
+
|
1642
|
+
var carewellBookNowAPIpeabodyprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11243/queueID/16662/format/true?callback=?";
|
1643
|
+
$.getJSON(carewellBookNowAPIpeabodyprimary, function(data) {
|
1644
|
+
$('#carewellBookNowTimepeabodyprimary').html(data.reservationTime);
|
1645
|
+
});
|
1646
|
+
|
1647
|
+
var carewellBookNowAPIsomervilleprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11379/queueID/17179/format/true?callback=?";
|
1648
|
+
$.getJSON(carewellBookNowAPIsomervilleprimary, function(data) {
|
1649
|
+
$('#carewellBookNowTimesomervilleprimary').html(data.reservationTime);
|
1650
|
+
});
|
1651
|
+
|
1652
|
+
var carewellBookNowAPIcambridgeprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11257/queueID/16716/format/true?callback=?";
|
1653
|
+
$.getJSON(carewellBookNowAPIcambridgeprimary, function(data) {
|
1654
|
+
$('#carewellBookNowTimecambridgeprimary').html(data.reservationTime);
|
1655
|
+
});
|
1656
|
+
|
1657
|
+
var carewellBookNowAPIframinghamprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11314/queueID/16928/format/true?callback=?";
|
1658
|
+
$.getJSON(carewellBookNowAPIframinghamprimary, function(data) {
|
1659
|
+
$('#carewellBookNowTimeframinghamprimary').html(data.reservationTime);
|
1660
|
+
});
|
1661
|
+
|
1662
|
+
var carewellBookNowAPIcambridgeconcordprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11348/queueID/17083/format/true?callback=?";
|
1663
|
+
$.getJSON(carewellBookNowAPIcambridgeconcordprimary, function(data) {
|
1664
|
+
$('#carewellBookNowTimecambridgeconcordprimary').html(data.reservationTime);
|
1665
|
+
});
|
1666
|
+
|
1667
|
+
var carewellBookNowAPIworcesterlincolnprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11340/queueID/17058/format/true?callback=?";
|
1668
|
+
$.getJSON(carewellBookNowAPIworcesterlincolnprimary, function(data) {
|
1669
|
+
$('#carewellBookNowTimeworcesterlincolnprimary').html(data.reservationTime);
|
1670
|
+
});
|
1671
|
+
|
1672
|
+
var carewellBookNowAPIworcestergreenwoodprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11339/queueID/17055/format/true?callback=?";
|
1673
|
+
$.getJSON(carewellBookNowAPIworcestergreenwoodprimary, function(data) {
|
1674
|
+
$('#carewellBookNowTimeworcestergreenwoodprimary').html(data.reservationTime);
|
1675
|
+
});
|
1676
|
+
|
1677
|
+
var carewellBookNowAPInorthboroughprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11367/queueID/17143/format/true?callback=?";
|
1678
|
+
$.getJSON(carewellBookNowAPInorthboroughprimary, function(data) {
|
1679
|
+
$('#carewellBookNowTimenorthboroughprimary').html(data.reservationTime);
|
1680
|
+
});
|
1681
|
+
|
1682
|
+
var carewellBookNowAPImarlboroughprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11421/queueID/17320/format/true?callback=?";
|
1683
|
+
$.getJSON(carewellBookNowAPImarlboroughprimary, function(data) {
|
1684
|
+
$('#carewellBookNowTimemarlboroughprimary').html(data.reservationTime);
|
1685
|
+
});
|
1686
|
+
|
1687
|
+
var carewellBookNowAPIwarwickprimary = "https://www.erexpress.com/for-patients/first-available-reservation/hospitalID/11240/queueID/16653/format/true?callback=?";
|
1688
|
+
$.getJSON(carewellBookNowAPIwarwickprimary, function(data) {
|
1689
|
+
$('#carewellBookNowTimewarwickprimary').html(data.reservationTime);
|
1690
|
+
});
|
1691
|
+
});
|
1692
|
+
</script>
|
1693
|
+
|
1694
|
+
</div>
|
1695
|
+
<!-- .et_pb_code_inner -->
|
1696
|
+
</div>
|
1697
|
+
<!-- .et_pb_code -->
|
1698
|
+
</div>
|
1699
|
+
<!-- .et_pb_column -->
|
1700
|
+
<div class="et_pb_column et_pb_column_1_4 et_pb_column_38 et_pb_column_empty et_pb_css_mix_blend_mode_passthrough et-last-child">
|
1701
|
+
|
1702
|
+
|
1703
|
+
|
1704
|
+
</div>
|
1705
|
+
<!-- .et_pb_column -->
|
1706
|
+
|
1707
|
+
|
1708
|
+
</div>
|
1709
|
+
<!-- .et_pb_row -->
|
1710
|
+
|
1711
|
+
|
1712
|
+
</div>
|
1713
|
+
<!-- .et_pb_section -->
|
1714
|
+
</div>
|
1715
|
+
<!-- .entry-content -->
|
1716
|
+
|
1717
|
+
|
1718
|
+
</article>
|
1719
|
+
<!-- .et_pb_post -->
|
1720
|
+
|
1721
|
+
|
1722
|
+
|
1723
|
+
</div>
|
1724
|
+
<!-- #main-content -->
|
1725
|
+
|
1726
|
+
<center><button class="button-locations" style="margin-top:35px" onclick="toggleLocations()">Locations</button></center>
|
1727
|
+
|
1728
|
+
<div id="locations" style="padding:25px; background-color: #202f52; color:#fff; -webkit-column-count: 3; /* Chrome, Safari, Opera */ -moz-column-count: 3; /* Firefox */ column-count: 3" class="closed">
|
1729
|
+
<p><a href="https://www.carewellurgentcare.com/locations/billerica-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Billerica, MA</a> | <a href="tel:9783622443" style="color:#fff" class="billerica">978.362.2443</a></p>
|
1730
|
+
<p><a href="https://www.carewellurgentcare.com/locations/cambridge-ma-inman-square-urgent-care/" style="color:#fff; text-decoration: underline;">Cambridge, MA Inman Square</a> | <a href="tel:6177144534" style="color:#fff" class="inman-square"> 617.714.4534</a></p>
|
1731
|
+
<p><a href="https://www.carewellurgentcare.com/locations/cambridge-ma-fresh-pond-urgent-care/" style="color:#fff; text-decoration: underline;">Cambridge, MA Fresh Pond</a> | <a href="tel:8577061107" style="color:#fff" class="fresh-pond"> 857.706.1107</a></p>
|
1732
|
+
<p><a href="https://www.carewellurgentcare.com/fitchburg-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Fitchburg, MA</a> | <a href="tel:9782188732" style="color:#fff" class="fitchburg"> 978.218.8732</a></p>
|
1733
|
+
<p><a href="https://www.carewellurgentcare.com/locations/framingham-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Framingham, MA</a> | <a href="tel:5088617375" style="color:#fff" class="framingham"> 508.861.7375</a></p>
|
1734
|
+
<p><a href="https://www.carewellurgentcare.com/locations/lexington-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Lexington, MA</a> | <a href="tel:7815384526" style="color:#fff" class="lexington"> 781.538.4526</a></p>
|
1735
|
+
<p><a href="https://www.carewellurgentcare.com/locations/marlborough-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Marlborough, MA</a> | <a href="tel:5086308989" style="color:#fff" class="marlborough"> 508.630.8989</a></p>
|
1736
|
+
<p><a href="https://www.carewellurgentcare.com/locations/needham-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Needham, MA</a> | <a href="tel:7814001383" style="color:#fff" class="needham"> 781.400.1383</a></p>
|
1737
|
+
<p><a href="https://www.carewellurgentcare.com/locations/northborough-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Northborough, MA</a> | <a href="tel:5084668677" style="color:#fff" class="northborough"> 508.466.8677</a></p>
|
1738
|
+
<p><a href="https://www.carewellurgentcare.com/locations/norwell-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Norwell, MA</a> | <a href="tel:7814213503" style="color:#fff" class="norwell"> 781.421.3503</a></p>
|
1739
|
+
<p><a href="https://www.carewellurgentcare.com/locations/peabody-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Peabody, MA</a> | <a href="tel:9788265950" style="color:#fff" class="peabody"> 978.826.5950</a></p>
|
1740
|
+
<p><a href="https://www.carewellurgentcare.com/locations/somerville-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Somerville, MA</a> | <a href="tel:6179966987" style="color:#fff" class="somerville"> 617.996.6987</a></p>
|
1741
|
+
<p><a href="https://www.carewellurgentcare.com/locations/south-dennis-ma-urgent-care/" style="color:#fff; text-decoration: underline;">South Dennis, MA</a> | <a href="tel:5086947901" style="color:#fff" class="south-dennis"> 508.694.7901</a></p>
|
1742
|
+
<p><a href="https://www.carewellurgentcare.com/locations/tewskbury-ma-urgent-care/" style="color:#fff; text-decoration: underline;">Tewksbury, MA</a> | <a href="tel:9788514683" style="color:#fff" class="tewksbury"> 978.851.4683</a></p>
|
1743
|
+
<p><a href="https://www.carewellurgentcare.com/locations/warwick-ri-urgent-care/" style="color:#fff; text-decoration: underline;">Warwick, RI</a> | <a href="tel:4017737220" style="color:#fff" class="warwick"> 401.773.7220</a></p>
|
1744
|
+
<p><a href="https://www.carewellurgentcare.com/locations/woresterfair-ma-greenwood-st-urgent-care/" style="color:#fff; text-decoration: underline;">Worcester Greenwood, MA</a> | <a href="tel:7744202103" style="color:#fff" class="worcester-greenwood-st"> 774.420.2103</a></p>
|
1745
|
+
<p><a href="https://www.carewellurgentcare.com/locations/woresterfair-ma-lincoln-st-urgent-care/" style="color:#fff; text-decoration: underline;">Worcester Lincoln, MA</a> | <a href="tel:7744202111" style="color:#fff" class="worcester-lincoln-st"> 774.420.2111</a></p>
|
1746
|
+
</div>
|
1747
|
+
</div>
|
1748
|
+
|
1749
|
+
<style>
|
1750
|
+
#locations.closed {
|
1751
|
+
display: none;
|
1752
|
+
}
|
1753
|
+
</style>
|
1754
|
+
<script>
|
1755
|
+
var locationsOpen = false;
|
1756
|
+
|
1757
|
+
function toggleLocations() {
|
1758
|
+
var x = document.getElementById('locations');
|
1759
|
+
// if (x.style.display === 'none') {
|
1760
|
+
// x.style.display = 'block';
|
1761
|
+
// } else {
|
1762
|
+
// x.style.display = 'none';
|
1763
|
+
// }
|
1764
|
+
if (locationsOpen) {
|
1765
|
+
x.classList.add('closed');
|
1766
|
+
} else {
|
1767
|
+
x.classList.remove('closed');
|
1768
|
+
}
|
1769
|
+
locationsOpen = !locationsOpen;
|
1770
|
+
}
|
1771
|
+
</script>
|
1772
|
+
|
1773
|
+
|
1774
|
+
<footer id="main-footer">
|
1775
|
+
|
1776
|
+
<div class="container">
|
1777
|
+
<div id="footer-widgets" class="clearfix">
|
1778
|
+
<div class="footer-widget">
|
1779
|
+
<div id="text-21" class="widget-odd widget-last widget-first widget-1 fwidget et_pb_widget widget_text">
|
1780
|
+
<div class="textwidget">
|
1781
|
+
<div>
|
1782
|
+
<img src="/wp-content/uploads/2017/04/footer.png">
|
1783
|
+
</div>
|
1784
|
+
|
1785
|
+
<div>
|
1786
|
+
<div style="float:left; padding-right:20px">
|
1787
|
+
<img src="/wp-content/uploads/2017/04/UCAOA4-150x150.png">
|
1788
|
+
</div>
|
1789
|
+
|
1790
|
+
<div>
|
1791
|
+
<p style="text-align:left; font-size: 11px">CareWell Urgent Care accepts all major insurance plans and Medicare. Not all insurance provides the same co-pay for urgent care. Please check your insurance card or call your company for rates. </p>
|
1792
|
+
<p style="text-align:left; font-size: 11px"> © 2017 CareWell Urgent Care | <a href="https://www.carewellurgentcare.com/privacy-policy/" style="color:#a3c2e6">Privacy Policy</a> | <a href="https://www.carewellurgentcare.com/payment-policy/" style="color:#a3c2e6">Payment Policy</a> |
|
1793
|
+
<a
|
1794
|
+
href="https://mail.carewelluc.com/owa/" target="_blank" style="color:#a3c2e6">Employee Access</a>
|
1795
|
+
</p>
|
1796
|
+
</div>
|
1797
|
+
</div>
|
1798
|
+
</div>
|
1799
|
+
<!-- end .fwidget -->
|
1800
|
+
</div>
|
1801
|
+
<!-- end .footer-widget -->
|
1802
|
+
</div>
|
1803
|
+
<!-- #footer-widgets -->
|
1804
|
+
</div>
|
1805
|
+
<!-- .container -->
|
1806
|
+
|
1807
|
+
<div id="footer-bottom">
|
1808
|
+
<div class="container clearfix">
|
1809
|
+
</div>
|
1810
|
+
<!-- .container -->
|
1811
|
+
</div>
|
1812
|
+
<!-- <p style="color:white;">***</p> -->
|
1813
|
+
<!-- #main-footer -->
|
1814
|
+
</div>
|
1815
|
+
<!-- #et-main-area -->
|
1816
|
+
|
1817
|
+
|
1818
|
+
</footer>
|
1819
|
+
</div>
|
1820
|
+
<!-- #page-container -->
|
1821
|
+
|
1822
|
+
|
1823
|
+
<!--BEGIN: TRACKING CODE MANAGER BY INTELLYWP.COM IN BODY//-->
|
1824
|
+
<!-- Google Conversion Script -->
|
1825
|
+
<script type="text/javascript">
|
1826
|
+
function trackConv(google_conversion_label) {
|
1827
|
+
var google_conversion_language = "en";
|
1828
|
+
var google_conversion_format = "3";
|
1829
|
+
var google_conversion_color = "ffffff";
|
1830
|
+
var google_remarketing_only = false;
|
1831
|
+
|
1832
|
+
image = new Image(1, 1);
|
1833
|
+
image.src = "https://www.googleadservices.com/pagead/conversion/939667895/?label=" + google_conversion_label + "&guid=ON&script=0";
|
1834
|
+
}
|
1835
|
+
</script>
|
1836
|
+
<script type="text/javascript" src="https://www.googleadservices.com/pagead/conversion.js"></script>
|
1837
|
+
|
1838
|
+
<!-- End Google Conversion Script -->
|
1839
|
+
<!-- Google Tag Manager (noscript) -->
|
1840
|
+
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PV3CPWG" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
|
1841
|
+
<!-- End Google Tag Manager (noscript) -->
|
1842
|
+
<script language="JavaScript1.1" src="//pixel.mathtag.com/event/js?mt_id=1060305&mt_adid=149806&v1=&v2=&v3=&s1=&s2=&s3="></script>
|
1843
|
+
|
1844
|
+
<!--hello-->
|
1845
|
+
<!--END: https://wordpress.org/plugins/tracking-code-manager IN BODY//-->
|
1846
|
+
<!--BEGIN: TRACKING CODE MANAGER BY INTELLYWP.COM IN FOOTER//-->
|
1847
|
+
<!--
|
1848
|
+
Start of DoubleClick Floodlight Tag: Please do not remove
|
1849
|
+
Activity name of this tag: Locations Page Unique Impressions
|
1850
|
+
URL of the webpage where the tag is expected to be placed: https://www.carewellurgentcare.com/locations/
|
1851
|
+
This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag.
|
1852
|
+
Creation Date: 01/09/2017
|
1853
|
+
-->
|
1854
|
+
<script type="text/javascript">
|
1855
|
+
var axel = Math.random() + "";
|
1856
|
+
var a = axel * 10000000000000;
|
1857
|
+
document.write('<iframe src="https://5925157.fls.doubleclick.net/activityi;src=5925157;type=imp;cat=locat0;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;ord=1;num=' + a +
|
1858
|
+
'?" width="1" height="1" frameborder="0" style="display:none"></iframe>');
|
1859
|
+
</script>
|
1860
|
+
<noscript>
|
1861
|
+
<iframe src="https://5925157.fls.doubleclick.net/activityi;src=5925157;type=imp;cat=locat0;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;ord=1;num=1?" width="1" height="1" frameborder="0" style="display:none"></iframe>
|
1862
|
+
</noscript>
|
1863
|
+
<!-- End of DoubleClick Floodlight Tag: Please do not remove -->
|
1864
|
+
<!--END: https://wordpress.org/plugins/tracking-code-manager IN FOOTER//-->
|
1865
|
+
<script id="wpsl-info-window-template" type="text/template">
|
1866
|
+
<div data-store-id="<%= id %>" class="wpsl-info-window">
|
1867
|
+
<p>
|
1868
|
+
<% if ( wpslSettings.storeUrl == 1 && url ) { %>
|
1869
|
+
<strong><a target="_blank" href="<%= url %>"><%= store %></a></strong>
|
1870
|
+
<% } else { %>
|
1871
|
+
<strong><%= store %></strong>
|
1872
|
+
<% } %>
|
1873
|
+
<span><%= address %></span>
|
1874
|
+
<% if ( address2 ) { %>
|
1875
|
+
<span><%= address2 %></span>
|
1876
|
+
<% } %>
|
1877
|
+
<span><%= city %> <%= state %> <%= zip %></span>
|
1878
|
+
</p>
|
1879
|
+
<% if ( phone ) { %>
|
1880
|
+
<span><strong>Phone</strong>: <%= formatPhoneNumber( phone ) %></span>
|
1881
|
+
<% } %>
|
1882
|
+
<% if ( fax ) { %>
|
1883
|
+
<span><strong>Fax</strong>: <%= fax %></span>
|
1884
|
+
<% } %>
|
1885
|
+
<% if ( email ) { %>
|
1886
|
+
<span><strong>Email</strong>: <%= formatEmail( email ) %></span>
|
1887
|
+
<% } %>
|
1888
|
+
<%= createInfoWindowActions( id ) %>
|
1889
|
+
</div>
|
1890
|
+
</script>
|
1891
|
+
<script id="wpsl-listing-template" type="text/template">
|
1892
|
+
<li data-store-id="<%= id %>">
|
1893
|
+
<div class="wpsl-store-location">
|
1894
|
+
<p>
|
1895
|
+
<%= thumb %>
|
1896
|
+
<% if ( wpslSettings.storeUrl == 1 && url ) { %>
|
1897
|
+
<strong><a target="_blank" href="<%= url %>"><%= store %></a></strong>
|
1898
|
+
<% } else { %>
|
1899
|
+
<strong><%= store %></strong>
|
1900
|
+
<% } %>
|
1901
|
+
<span class="wpsl-street"><%= address %></span>
|
1902
|
+
<% if ( address2 ) { %>
|
1903
|
+
<span class="wpsl-street"><%= address2 %></span>
|
1904
|
+
<% } %>
|
1905
|
+
<span><%= city %> <%= state %> <%= zip %></span>
|
1906
|
+
<span class="wpsl-country"><%= country %></span>
|
1907
|
+
</p>
|
1908
|
+
<p><a class="wpsl-store-details" href="#wpsl-search-wrap">More info</a></p>
|
1909
|
+
</div>
|
1910
|
+
<div class="wpsl-direction-wrap">
|
1911
|
+
<%= distance %> mi
|
1912
|
+
<%= createDirectionUrl() %>
|
1913
|
+
</div>
|
1914
|
+
</li>
|
1915
|
+
</script>
|
1916
|
+
<script type="text/javascript">
|
1917
|
+
var et_animation_data = [];
|
1918
|
+
</script>
|
1919
|
+
<script type="text/javascript">
|
1920
|
+
/* <![CDATA[ */
|
1921
|
+
var wpcf7 = {
|
1922
|
+
"apiSettings": {
|
1923
|
+
"root": "https:\/\/www.carewellurgentcare.com\/wp-json\/contact-form-7\/v1",
|
1924
|
+
"namespace": "contact-form-7\/v1"
|
1925
|
+
},
|
1926
|
+
"recaptcha": {
|
1927
|
+
"messages": {
|
1928
|
+
"empty": "Please verify that you are not a robot."
|
1929
|
+
}
|
1930
|
+
},
|
1931
|
+
"cached": "1"
|
1932
|
+
};
|
1933
|
+
/* ]]> */
|
1934
|
+
</script>
|
1935
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=5.0.1"></script>
|
1936
|
+
<script type="text/javascript">
|
1937
|
+
/* <![CDATA[ */
|
1938
|
+
var PT_CV_PUBLIC = {
|
1939
|
+
"_prefix": "pt-cv-",
|
1940
|
+
"page_to_show": "5",
|
1941
|
+
"_nonce": "56fad819b9",
|
1942
|
+
"is_admin": "",
|
1943
|
+
"is_mobile": "",
|
1944
|
+
"ajaxurl": "https:\/\/www.carewellurgentcare.com\/wp-admin\/admin-ajax.php",
|
1945
|
+
"lang": "",
|
1946
|
+
"loading_image_src": "data:image\/gif;base64,R0lGODlhDwAPALMPAMrKygwMDJOTkz09PZWVla+vr3p6euTk5M7OzuXl5TMzMwAAAJmZmWZmZszMzP\/\/\/yH\/C05FVFNDQVBFMi4wAwEAAAAh+QQFCgAPACwAAAAADwAPAAAEQvDJaZaZOIcV8iQK8VRX4iTYoAwZ4iCYoAjZ4RxejhVNoT+mRGP4cyF4Pp0N98sBGIBMEMOotl6YZ3S61Bmbkm4mAgAh+QQFCgAPACwAAAAADQANAAAENPDJSRSZeA418itN8QiK8BiLITVsFiyBBIoYqnoewAD4xPw9iY4XLGYSjkQR4UAUD45DLwIAIfkEBQoADwAsAAAAAA8ACQAABC\/wyVlamTi3nSdgwFNdhEJgTJoNyoB9ISYoQmdjiZPcj7EYCAeCF1gEDo4Dz2eIAAAh+QQFCgAPACwCAAAADQANAAAEM\/DJBxiYeLKdX3IJZT1FU0iIg2RNKx3OkZVnZ98ToRD4MyiDnkAh6BkNC0MvsAj0kMpHBAAh+QQFCgAPACwGAAAACQAPAAAEMDC59KpFDll73HkAA2wVY5KgiK5b0RRoI6MuzG6EQqCDMlSGheEhUAgqgUUAFRySIgAh+QQFCgAPACwCAAIADQANAAAEM\/DJKZNLND\/kkKaHc3xk+QAMYDKsiaqmZCxGVjSFFCxB1vwy2oOgIDxuucxAMTAJFAJNBAAh+QQFCgAPACwAAAYADwAJAAAEMNAs86q1yaWwwv2Ig0jUZx3OYa4XoRAfwADXoAwfo1+CIjyFRuEho60aSNYlOPxEAAAh+QQFCgAPACwAAAIADQANAAAENPA9s4y8+IUVcqaWJ4qEQozSoAzoIyhCK2NFU2SJk0hNnyEOhKR2AzAAj4Pj4GE4W0bkJQIAOw=="
|
1947
|
+
};
|
1948
|
+
var PT_CV_PAGINATION = {
|
1949
|
+
"first": "\u00ab",
|
1950
|
+
"prev": "\u2039",
|
1951
|
+
"next": "\u203a",
|
1952
|
+
"last": "\u00bb",
|
1953
|
+
"goto_first": "Go to first page",
|
1954
|
+
"goto_prev": "Go to previous page",
|
1955
|
+
"goto_next": "Go to next page",
|
1956
|
+
"goto_last": "Go to last page",
|
1957
|
+
"current_page": "Current page is",
|
1958
|
+
"goto_page": "Go to page"
|
1959
|
+
};
|
1960
|
+
/* ]]> */
|
1961
|
+
</script>
|
1962
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-content/plugins/content-views-query-and-display-post-page/public/assets/js/cv.js?ver=2.0.1"></script>
|
1963
|
+
<script type="text/javascript" src="https://s0.wp.com/wp-content/js/devicepx-jetpack.js?ver=201822"></script>
|
1964
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-content/plugins/overdrive-centers/main.js?ver=4.9.6"></script>
|
1965
|
+
<script type="text/javascript">
|
1966
|
+
/* <![CDATA[ */
|
1967
|
+
var et_shortcodes_strings = {
|
1968
|
+
"previous": "Previous",
|
1969
|
+
"next": "Next"
|
1970
|
+
};
|
1971
|
+
var et_pb_custom = {
|
1972
|
+
"ajaxurl": "https:\/\/www.carewellurgentcare.com\/wp-admin\/admin-ajax.php",
|
1973
|
+
"images_uri": "https:\/\/www.carewellurgentcare.com\/wp-content\/themes\/Divi\/images",
|
1974
|
+
"builder_images_uri": "https:\/\/www.carewellurgentcare.com\/wp-content\/themes\/Divi\/includes\/builder\/images",
|
1975
|
+
"et_frontend_nonce": "70d3c164ab",
|
1976
|
+
"subscription_failed": "Please, check the fields below to make sure you entered the correct information.",
|
1977
|
+
"et_ab_log_nonce": "21d2b639d4",
|
1978
|
+
"fill_message": "Please, fill in the following fields:",
|
1979
|
+
"contact_error_message": "Please, fix the following errors:",
|
1980
|
+
"invalid": "Invalid email",
|
1981
|
+
"captcha": "Captcha",
|
1982
|
+
"prev": "Prev",
|
1983
|
+
"previous": "Previous",
|
1984
|
+
"next": "Next",
|
1985
|
+
"wrong_captcha": "You entered the wrong number in captcha.",
|
1986
|
+
"is_builder_plugin_used": "",
|
1987
|
+
"ignore_waypoints": "no",
|
1988
|
+
"is_divi_theme_used": "1",
|
1989
|
+
"widget_search_selector": ".widget_search",
|
1990
|
+
"is_ab_testing_active": "",
|
1991
|
+
"page_id": "2926",
|
1992
|
+
"unique_test_id": "",
|
1993
|
+
"ab_bounce_rate": "5",
|
1994
|
+
"is_cache_plugin_active": "no",
|
1995
|
+
"is_shortcode_tracking": ""
|
1996
|
+
};
|
1997
|
+
var et_pb_box_shadow_elements = [];
|
1998
|
+
/* ]]> */
|
1999
|
+
</script>
|
2000
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-content/themes/Divi/js/custom.min.js?ver=3.0.106"></script>
|
2001
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-content/themes/Divi/core/admin/js/common.js?ver=3.0.106"></script>
|
2002
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-includes/js/wp-embed.min.js?ver=4.9.6"></script>
|
2003
|
+
<script type="text/javascript" src="https://maps.google.com/maps/api/js?language=en&region=us&key=AIzaSyD8-UpAX94xS0bPewtoCdSS7vRJF_oY91I&libraries=places"></script>
|
2004
|
+
<script type="text/javascript">
|
2005
|
+
/* <![CDATA[ */
|
2006
|
+
var wpslLabels = {
|
2007
|
+
"preloader": "Searching...",
|
2008
|
+
"noResults": "No results found",
|
2009
|
+
"moreInfo": "More info",
|
2010
|
+
"generalError": "Something went wrong, please try again!",
|
2011
|
+
"queryLimit": "API usage limit reached",
|
2012
|
+
"directions": "Directions",
|
2013
|
+
"noDirectionsFound": "No route could be found between the origin and destination",
|
2014
|
+
"startPoint": "Start location",
|
2015
|
+
"back": "Back",
|
2016
|
+
"streetView": "Street view",
|
2017
|
+
"zoomHere": "Zoom here"
|
2018
|
+
};
|
2019
|
+
var wpslGeolocationErrors = {
|
2020
|
+
"denied": "The application does not have permission to use the Geolocation API.",
|
2021
|
+
"unavailable": "Location information is unavailable.",
|
2022
|
+
"timeout": "The geolocation request timed out.",
|
2023
|
+
"generalError": "An unknown error occurred."
|
2024
|
+
};
|
2025
|
+
var wpslSettings = {
|
2026
|
+
"startMarker": "red@2x.png",
|
2027
|
+
"markerClusters": "0",
|
2028
|
+
"streetView": "0",
|
2029
|
+
"autoComplete": "1",
|
2030
|
+
"autoLocate": "1",
|
2031
|
+
"autoLoad": "1",
|
2032
|
+
"markerEffect": "bounce",
|
2033
|
+
"markerStreetView": "0",
|
2034
|
+
"markerZoomTo": "0",
|
2035
|
+
"newWindow": "1",
|
2036
|
+
"resetMap": "0",
|
2037
|
+
"directionRedirect": "1",
|
2038
|
+
"phoneUrl": "1",
|
2039
|
+
"clickableDetails": "0",
|
2040
|
+
"moreInfoLocation": "info window",
|
2041
|
+
"mouseFocus": "1",
|
2042
|
+
"templateId": "default",
|
2043
|
+
"maxResults": "25",
|
2044
|
+
"searchRadius": "50",
|
2045
|
+
"distanceUnit": "mi",
|
2046
|
+
"geoLocationTimeout": "7500",
|
2047
|
+
"ajaxurl": "https:\/\/www.carewellurgentcare.com\/wp-admin\/admin-ajax.php",
|
2048
|
+
"mapControls": "<div id=\"wpsl-map-controls\" ><div class=\"wpsl-icon-direction\"><span>\ue800<\/span><\/div><\/div>",
|
2049
|
+
"geocodeComponents": {
|
2050
|
+
"country": "US"
|
2051
|
+
},
|
2052
|
+
"storeMarker": "blue@2x.png",
|
2053
|
+
"mapType": "roadmap",
|
2054
|
+
"mapTypeControl": "0",
|
2055
|
+
"zoomLevel": "12",
|
2056
|
+
"startLatlng": "42.360083,-71.05888",
|
2057
|
+
"autoZoomLevel": "15",
|
2058
|
+
"scrollWheel": "1",
|
2059
|
+
"controlPosition": "left",
|
2060
|
+
"url": "https:\/\/www.carewellurgentcare.com\/wp-content\/plugins\/wp-store-locator\/",
|
2061
|
+
"markerIconProps": {
|
2062
|
+
"scaledSize": "24,35",
|
2063
|
+
"origin": "0,0",
|
2064
|
+
"anchor": "12,35"
|
2065
|
+
},
|
2066
|
+
"storeUrl": "1",
|
2067
|
+
"maxDropdownHeight": "300",
|
2068
|
+
"enableStyledDropdowns": "1",
|
2069
|
+
"mapTabAnchor": "wpsl-map-tab",
|
2070
|
+
"mapTabAnchorReturn": "",
|
2071
|
+
"gestureHandling": "auto",
|
2072
|
+
"directionsTravelMode": "DRIVING",
|
2073
|
+
"runFitBounds": "1",
|
2074
|
+
"mapStyle": ""
|
2075
|
+
};
|
2076
|
+
/* ]]> */
|
2077
|
+
</script>
|
2078
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-content/plugins/wp-store-locator/js/wpsl-gmap.min.js?ver=2.2.14"></script>
|
2079
|
+
<script type="text/javascript" src="https://www.carewellurgentcare.com/wp-includes/js/underscore.min.js?ver=1.8.3"></script>
|
2080
|
+
<script type="text/javascript" src="https://stats.wp.com/e-201822.js" async="async" defer></script>
|
2081
|
+
<script type="text/javascript">
|
2082
|
+
_stq = window._stq || [];
|
2083
|
+
_stq.push(['view', {
|
2084
|
+
v: 'ext',
|
2085
|
+
j: '1:6.0',
|
2086
|
+
blog: '65504731',
|
2087
|
+
post: '2926',
|
2088
|
+
tz: '0',
|
2089
|
+
srv: 'www.carewellurgentcare.com'
|
2090
|
+
}]);
|
2091
|
+
_stq.push(['clickTrackerInit', '65504731', '2926']);
|
2092
|
+
</script>
|
2093
|
+
|
2094
|
+
|
2095
|
+
<!-- Overdrive Dynamic Site Content -->
|
2096
|
+
<script type="text/javascript">
|
2097
|
+
var _DSCID = 'carewell';
|
2098
|
+
(function() {
|
2099
|
+
var ds = document.createElement('script');
|
2100
|
+
ds.type = 'text/javascript';
|
2101
|
+
ds.async = true;
|
2102
|
+
ds.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'www.landingpg.com/dsc/dsc.min.js';
|
2103
|
+
var s = document.getElementsByTagName('script')[0];
|
2104
|
+
s.parentNode.insertBefore(ds, s);
|
2105
|
+
})();
|
2106
|
+
</script>
|
2107
|
+
<!-- END Overdrive Dynamic Site Content -->
|
2108
|
+
</body>
|
2109
|
+
|
2110
|
+
</html>
|