๐งช Epworth Sleepiness Scale (ESS)
Evaluates daytime sleepiness levels to screen for sleep apnea, narcolepsy, or chronic sleep deprivation disorders.
Enter your clinical parameters to see dynamic diagnostic readings.
`;
} else {
card.innerHTML = `
${res.score}
${res.title}
${res.desc}
๐ Result Interpretation
${res.desc}
๐ Normal Ranges
ESS Score: 0โ5 (Normal) | 6โ10 (High Normal) | 11โ15 (Mild-Moderate sleepiness) | 16โ24 (Severe excessive daytime sleepiness)
๐ก What This Means
Measures dozing probability in eight everyday sedentary situations on a 0 to 3 score scale.
โ ๏ธ When to See a Doctor
Consult a physician or sleep specialist if score is โฅ 11, which marks excessive daytime somnolence.
๐ Related Conditions
๐ฟ Related Remedies
๐งฎ Related Calculators
๐ฅ Medical Guidance & Consultation
Need personalized guidance? You can book a professional Homeopathic Consultation for a complete therapeutic assessment.
`;
}
}
function copyResult_hc_6a965285cdf09(score, title) {
const text = "Epworth Sleepiness Scale (ESS) Result:\nScore: " + score + "\nClassification: " + title + "\nReport generated via Toolfix.info";
navigator.clipboard.writeText(text).then(() => {
alert('Result copied to clipboard!');
});
}
function shareResult_hc_6a965285cdf09(score) {
const shareUrl = window.location.origin + window.location.pathname + '?score=' + encodeURIComponent(score);
navigator.clipboard.writeText(shareUrl).then(() => {
alert('Share link copied to clipboard!');
});
}
// Auto-calculate on input
(function() {
const initAutoCalc = () => {
const wrapper = document.getElementById('hc_6a965285cdf09-wrapper');
if (wrapper) {
wrapper.querySelectorAll('input, select').forEach(el => {
const eventName = el.tagName === 'SELECT' ? 'change' : 'input';
el.addEventListener(eventName, () => {
calc_hc_6a965285cdf09(true);
});
});
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initAutoCalc);
} else {
initAutoCalc();
}
})();