Don’t wait — scroll down and apply filters now to uncover opportunities that match your ambitions.
New roles are posted every hour, and your next big break could be just one click away.
Pro tip: Bookmark this page, set your filters (you can even filter by benefits important to you) and subscribe to alerts — you'll stay ahead of the competition.
Search by benefits important to your life and future. Select one or more to
refine your search.
Good Samaritan Health Center in Atlanta seeks a compassionate LPN for our Long Term Care team. In this onsite role, you’ll deliver resident-centered nursing care, including assessments, medications, treatments, wound car...
Good Samaritan Health Center seeks a compassionate LPN for our Long Term Care team. In this on-site role, you’ll provide direct nursing care, administer medications, monitor residents, and support daily living needs for...
Good Samaritan Health Center in Atlanta seeks an LPN for our Long Term Care team. In this onsite role, you’ll provide compassionate, high-quality nursing care for residents, including assessments, medication administrati...
Good Samaritan Health Center seeks a compassionate LPN for our Long Term Care team serving underserved adults and seniors. In this on-site role, you’ll provide holistic nursing care including medication administration, w...
Good Samaritan Health Center is seeking a compassionate LPN for our Long Term Care team. The LPN delivers resident-centered nursing care, including assessments, medication administration, treatments, and coordination of...
Good Samaritan seeks a compassionate LPN for our Long Term Care team serving underserved patients. In this on-site role, you will provide holistic, faith-informed nursing care, including medication administration, treatm...
Good Samaritan Health Center in Atlanta seeks a compassionate LPN for our Long Term Care team. In this on-site role, you’ll provide bedside nursing care, medication administration, and monitoring for residents in a suppo...
Good Samaritan is seeking an LPN for our Long Term Care team to deliver compassionate, resident-centered nursing care in a faith-based, mission-driven setting. The LPN will provide daily clinical care, administer medicat...
Good Samaritan Health Center in Atlanta seeks a compassionate LPN for our Long Term Care team. In this onsite role, you’ll provide holistic, resident-centered nursing care to underserved individuals in a faith-inspired,...
Good Samaritan Health Center in Atlanta seeks a compassionate LPN for our Long-Term Care team. In this role, you’ll provide direct nursing care to adult and geriatric residents, including assessments, medication administ...
Good Samaritan Health Center seeks a Licensed Practical Nurse to deliver compassionate, high-quality care in our faith-based, community clinic. The LPN will provide direct patient care, administer medications and immuniz...
Good Samaritan is seeking a compassionate LPN for our Long Term Care team. In this on-site role, you’ll provide direct nursing care to residents, administer medications and treatments, monitor and document changes in con...
Good Samaritan Health Center seeks an RN for our Long Term Care team to provide compassionate, resident-centered nursing in a faith-based, mission-driven setting. The RN delivers holistic care to older adults and medical...
Good Samaritan Health Center seeks an RN for our Long Term Care program serving underserved neighbors in a faith-based, mission-driven setting. The RN provides holistic, resident-centered nursing care, including assessme...
Good Samaritan Health Center in Atlanta seeks a compassionate Registered Nurse to join our Healthcare & Medical Services team. As part of a mission-driven, faith-inspired nonprofit, you will provide holistic primary...
Good Samaritan Health Center seeks a compassionate Registered Nurse to provide holistic, patient-centered care to underserved individuals and families. The RN will perform assessments, manage chronic conditions, administ...
Good Samaritan Health Center in Atlanta seeks a compassionate Registered Nurse to provide high-quality, holistic care to underserved individuals and families in our faith-based community health setting. The RN will deliv...
Good Samaritan Health Center seeks an RN for our Long Term Care team serving underserved elders in a mission-driven, faith-informed environment. The RN provides holistic assessments, care planning, medication administrat...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
At Good Samaritan Health Center, we are dedicated to providing unmatched care tailored specifically to meet the needs of our underserved communities. As part of our team, Registered Nurses (RNs) play a pivotal role in de...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
Good Samaritan Health Center in Atlanta is seeking a full-time LPN to join our Healthcare & Medical Services team. In this role, you’ll provide compassionate, high-quality nursing care including vital signs, medicati...
';
}
/* ── CORE ────────────────────────────────────────────────────────── */
function injectStyles() {
if (document.getElementById('gzj-sc-styles')) return;
var style = document.createElement('style');
style.id = 'gzj-sc-styles';
style.textContent = CSS;
(document.head || document.body).appendChild(style);
}
function kv(line) {
var sep = line.indexOf(': ');
if (sep === -1) return null;
return [line.slice(0, sep).toLowerCase().trim(), line.slice(sep + 2).trim()];
}
function isDivider(line) {
return /^={5,}/.test(line);
}
function parseSections(lines) {
var sections = {};
var name = null;
var buf = [];
for (var i = 0; i < lines.length; i++) {
var line = lines[i].trim();
if (isDivider(line) && i + 2 < lines.length && isDivider(lines[i + 2].trim())) {
if (name) sections[name] = buf;
name = lines[i + 1].trim().toUpperCase();
buf = [];
i += 2;
} else if (name && line) {
buf.push(line);
}
}
if (name) sections[name] = buf;
return sections;
}
function parseText(container) {
/* Read one line per
element to avoid double-newline issues with
innerText across different browsers. Falls back to innerText split
if no
elements are found (e.g. plain text node). */
var paras = container.querySelectorAll('p');
var lines;
if (paras.length) {
lines = Array.prototype.map.call(paras, function (p) {
return p.textContent;
});
} else {
var raw = (typeof container.innerText !== 'undefined') ? container.innerText : container.textContent;
lines = raw.split('\n');
}
var secs = parseSections(lines);
var data = { stats: [], badges: [], industries: [], highlights: [], pros: [], cons: [] };
/* CITY INFO */
var groups = {};
(secs['CITY INFO'] || []).forEach(function (line) {
var p = kv(line);
if (!p) return;
var k = p[0], v = p[1];
if (k === 'city') data.city = v;
else if (k === 'state') data.state = v;
else if (k === 'page title') data.tagline = v;
else if (k === 'intro') data.intro = v;
else if (/^stat \d+$/.test(k)) {
var parts = v.split('|');
data.stats.push({ value: parts[0].trim(), label: (parts[1] || '').trim() });
}
else if (/^tag \d+$/.test(k)) data.badges.push(v);
});
/* INDUSTRIES */
groups = {};
(secs['INDUSTRIES'] || []).forEach(function (line) {
var p = kv(line);
if (!p) return;
var k = p[0], v = p[1];
if (k === 'section title') data.industries_heading = v;
else if (k === 'section intro') data.industries_intro = v;
else {
var m = k.match(/^industry (\d+) - (\w+)$/);
if (m) {
var n = m[1], prop = m[2];
groups[n] = groups[n] || {};
if (prop === 'icon') groups[n].icon = v;
else if (prop === 'title') groups[n].title = v;
else if (prop === 'salary') groups[n].salary = v;
else if (prop === 'description') groups[n].description = v;
}
}
});
Object.keys(groups).sort(function (a, b) { return a - b; }).forEach(function (n) { data.industries.push(groups[n]); });
/* CITY HIGHLIGHTS */
groups = {};
(secs['CITY HIGHLIGHTS'] || []).forEach(function (line) {
var p = kv(line);
if (!p) return;
var k = p[0], v = p[1];
if (k === 'section title') data.highlights_heading = v;
else {
var m = k.match(/^highlight (\d+) - (\w+)$/);
if (m) {
var n = m[1], prop = m[2];
groups[n] = groups[n] || {};
if (prop === 'icon') groups[n].icon = v;
else if (prop === 'title') groups[n].title = v;
else if (prop === 'text') groups[n].text = v;
}
}
});
Object.keys(groups).sort(function (a, b) { return a - b; }).forEach(function (n) { data.highlights.push(groups[n]); });
/* FIT CHECK */
(secs['FIT CHECK'] || []).forEach(function (line) {
var p = kv(line);
if (!p) return;
var k = p[0], v = p[1];
if (k === 'section title') data.fit_heading = v;
else if (/^good fit \d+$/.test(k)) data.pros.push(v);
else if (/^think twice \d+$/.test(k)) data.cons.push(v);
});
/* CALL TO ACTION */
(secs['CALL TO ACTION'] || []).forEach(function (line) {
var p = kv(line);
if (!p) return;
var k = p[0], v = p[1];
if (k === 'heading') data.cta_heading = v;
else if (k === 'subtext') data.cta_subtext = v;
else if (k === 'button text') data.cta_text = v;
else if (k === 'button url') data.cta_url = v;
});
return data;
}
function transform() {
var container = document.querySelector(TARGET);
if (!container) return false;
container.style.visibility = 'hidden';
var data = parseText(container);
if (!data.city) {
container.style.visibility = '';
return false;
}
injectStyles();
container.innerHTML = buildAll(data);
container.style.visibility = '';
return true;
}
function init() {
if (transform()) return;
var observer = new MutationObserver(function () {
if (transform()) observer.disconnect();
});
observer.observe(document.body, { childList: true, subtree: true });
setTimeout(function () { observer.disconnect(); }, 10000);
}
document.readyState === 'loading'
? document.addEventListener('DOMContentLoaded', init)
: init();
})();
Never Miss a New Opportunity
Subscribe and get the latest jobs directly to your inbox