🧪 AST to Platelet Ratio Index (APRI) for Hepatitis
Calculates AST to Platelet Ratio Index (APRI) specifically for staging liver fibrosis and cirrhosis in chronic viral hepatitis (Hep B / Hep C) patients.
Enter your clinical parameters to see dynamic diagnostic readings.
📋 Copy
🔗 Share
🖨️ PDF Report
`;
} else {
card.innerHTML = `
${res.score}
${res.title}
${res.desc}
📋 Result Interpretation
${res.desc}
📊 Normal Ranges
APRI Score: < 0.5 (No Significant Fibrosis) | 0.5–1.5 (Significant Fibrosis) | > 1.5 (Cirrhosis Risk)
💡 What This Means
APRI is a clinically validated non-invasive scoring method to predict significant fibrosis and cirrhosis in chronic viral hepatitis.
⚠️ When to See a Doctor
Consult a hepatologist/gastroenterologist for APRI > 0.5 to evaluate liver health and discuss potential antiviral therapies.
🔗 Related Conditions
🌿 Related Remedies
🧮 Related Calculators
🏥 Medical Guidance & Consultation
Need personalized guidance? You can book a professional Homeopathic Consultation for a complete therapeutic assessment.
📋 Copy
🔗 Share
🖨️ PDF Report
`;
}
}
function copyResult_hc_6a96523ee8459(score, title) {
const text = "AST to Platelet Ratio Index (APRI) for Hepatitis Result:\nScore: " + score + "\nClassification: " + title + "\nReport generated via Toolfix.info";
navigator.clipboard.writeText(text).then(() => {
alert('Result copied to clipboard!');
});
}
function shareResult_hc_6a96523ee8459(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_6a96523ee8459-wrapper');
if (wrapper) {
wrapper.querySelectorAll('input, select').forEach(el => {
const eventName = el.tagName === 'SELECT' ? 'change' : 'input';
el.addEventListener(eventName, () => {
calc_hc_6a96523ee8459(true);
});
});
}
};
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initAutoCalc);
} else {
initAutoCalc();
}
})();