Services
Jainny Home Care Solution LLC offers a wide range of non-medical home care services, including:

Personal Care

Kitchen & Meal Support

Housekeeping & Laundry

Medication Assistance

Companionship & Socialization

Transportation & Shopping

Emergency and General Support

Payer Sources Accepted
.short-survey {
background: white;
border-radius: 12px;
padding: 25px;
max-width: 500px;
margin: 30px auto;
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.short-survey h3 {
text-align: center;
color: #333;
margin-bottom: 20px;
font-size: 22px;
}
.survey-q {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #eee;
}
.survey-q:last-of-type {
border-bottom: none;
}
.survey-q label {
display: block;
font-weight: 600;
color: #333;
margin-bottom: 10px;
font-size: 15px;
}
.stars {
display: flex;
gap: 8px;
justify-content: center;
}
.star {
font-size: 32px;
color: #ddd;
cursor: pointer;
transition: 0.2s;
}
.star:hover, .star.active {
color: #ffd700;
transform: scale(1.1);
}
.survey-btn {
width: 100%;
padding: 12px;
background: #0073aa;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
margin-top: 15px;
}
.survey-btn:hover {
background: #005177;
}
.thanks {
display: none;
text-align: center;
padding: 30px;
}
.thanks.show {
display: block;
}
.thanks h3 {
color: #0073aa;
font-size: 24px;
}
@media (max-width: 600px) {
.short-survey {
padding: 20px;
}
.star {
font-size: 28px;
}
}
const data = {overall: 0, ease: 0, recommend: 0};
document.querySelectorAll('.stars').forEach(group => {
const stars = group.querySelectorAll('.star');
const q = group.dataset.q;
stars.forEach(star => {
star.onclick = () => {
const v = parseInt(star.dataset.v);
data[q] = v;
stars.forEach((s, i) => {
s.classList.toggle('active', i < v);
});
};
});
});
function submitSurvey() {
if (data.overall === 0) {
alert('Please rate at least Overall Satisfaction');
return;
}
fetch('/wp-admin/admin-ajax.php', {
method: 'POST',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
body: 'action=save_survey&data=' + JSON.stringify(data)
});
document.getElementById('surveyForm').style.display = 'none';
document.getElementById('thanks').classList.add('show');
}
Rate Your Experience
★
★
★
★
★
★
★
★
★
★
★
★
★
★
★
Thank You! ✓
Your feedback helps us improve.