Scholarship Eligibility Checker
Check your eligibility for various government and private scholarships based on your academic performance and financial background
Check your eligibility for various government and private scholarships based on your academic performance and financial background
Your excellent academic record (${marks}%) qualifies you for high-merit scholarships.
You can apply for both national and international merit-based programs.
`; scholarships = [ {name: "Merit Scholarship Program", org: "HEC Pakistan", type: "Merit Based"}, {name: "Prime Minister's Laptop Scheme", org: "Government of Pakistan", type: "Merit Based"}, {name: "Commonwealth Scholarships", org: "Commonwealth Commission", type: "Merit Based"}, {name: "Fulbright Scholarship", org: "USEFP", type: "Merit Based"} ]; } else if (marks >= minMarks && income <= maxIncome) { resultBox.className = "eligible"; resultBox.innerHTML = `You meet both academic (${marks}%) and financial criteria for need-based scholarships.
You can apply for 80% of government and private scholarships.
`; scholarships = [ {name: "Need-Based Scholarship", org: "HEC Pakistan", type: "Need Based"}, {name: "PEEF Scholarships", org: "Punjab Education Endowment Fund", type: "Need & Merit Based"}, {name: "Ehsaas Undergraduate Scholarships", org: "Government of Pakistan", type: "Need Based"}, {name: "Benazir Undergraduate Scholarships", org: "BISP", type: "Need Based"} ]; } else if (marks < minMarks) { resultBox.className = "not-eligible"; resultBox.innerHTML = `Your marks (${marks}%) are below the required ${minMarks}% for most scholarships.
Consider improving your academic performance or looking for skill-based financial aid programs.
`; scholarships = [ {name: "Skill Development Programs", org: "NAVTTC", type: "Skill Based"}, {name: "Vocational Training Grants", org: "TEVTA", type: "Need Based"}, {name: "Micro-Scholarships", org: "Local NGOs", type: "Need Based"} ]; } else { resultBox.className = "not-eligible"; resultBox.innerHTML = `Your family income exceeds the limit for need-based scholarships.
However, you can still apply for merit-based scholarships if your marks are above ${meritMarks}%.
`; scholarships = [ {name: "Merit Scholarship Program", org: "HEC Pakistan", type: "Merit Based"}, {name: "University Merit Scholarships", org: "Individual Universities", type: "Merit Based"}, {name: "Corporate Scholarships", org: "Private Companies", type: "Merit Based"} ]; } // Display scholarship suggestions const scholarshipContainer = document.getElementById('scholarshipSuggestions'); scholarshipContainer.innerHTML = 'Organization: ${scholarship.org}
Type: ${scholarship.type}
`; scholarshipContainer.appendChild(scholarshipItem); }); // Scroll to results for better UX document.querySelector('.result-container').scrollIntoView({behavior: 'smooth', block: 'start'}); } function resetForm() { document.getElementById('level').value = 'matric'; document.getElementById('marks').value = '75'; document.getElementById('marksSlider').value = '75'; document.getElementById('marksValue').textContent = '75%'; document.getElementById('income').value = '50000'; document.getElementById('incomeSlider').value = '50000'; document.getElementById('incomeValue').textContent = '50,000'; document.getElementById('disability').value = 'no'; document.getElementById('resultBox').style.display = 'none'; // Clear scholarship suggestions const scholarshipContainer = document.getElementById('scholarshipSuggestions'); scholarshipContainer.innerHTML = 'Fill the form and check eligibility to see scholarship recommendations.
'; // Update criteria updateCriteria(); } function showHelp() { alert("Eligibility Guidelines:\n\n" + "1. Matric/O-Level: Minimum 60%, Income up to 80,000 PKR\n" + "2. Intermediate/A-Level: Minimum 65%, Income up to 100,000 PKR\n" + "3. Bachelor: Minimum 70%, Income up to 120,000 PKR\n" + "4. Master: Minimum 75%, Income up to 150,000 PKR\n" + "5. PhD: Minimum 80%, Income up to 200,000 PKR\n\n" + "Merit-based scholarships: Available for students with exceptional marks (85%+)\n" + "Disability scholarships: Special consideration with relaxed criteria"); } // Initialize with some sample scholarship suggestions window.onload = function() { const scholarshipContainer = document.getElementById('scholarshipSuggestions'); scholarshipContainer.innerHTML += 'Fill the form and check eligibility to see scholarship recommendations.
'; };