Lahore: Now, you can check your salary tax online by online calculator. Pakistan Salary Tax Calculator 2025-26 body { font-family: Arial, sans-serif; padding: 20px; background: #f7f7f7; } h1 { color: #004080; } .container { background: white; padding: 20px; border-radius: 8px; max-width: 500px; margin: auto; box-shadow: 0 0 10px rgba(0,0,0,0.1); } label, p { font-size: 16px; margin-top: 10px; } input[type="number"] { width: 100%; padding: 10px; margin-top: 5px; border-radius: 5px; border: 1px solid #ccc; } button { background: #004080; color: white; padding: 10px 15px; border: none; border-radius: 5px; cursor: pointer; margin-top: 15px; } #result { margin-top: 20px; font-weight: bold; } Pakistan Income Tax Calculator 2025-26 Enter your Annual Salary (PKR): Calculate Tax function calculateTax() { const salary = parseFloat(document.getElementById('salary').value); let tax = 0; if (salary <= 600000) { tax = 0; } else if (salary <= 1200000) { tax = (salary - 600000) * 0.01; } else if (salary <= 2200000) { tax = 6000 + (salary - 1200000) * 0.11; } else if (salary <= 3200000) { tax = 116000 + (salary - 2200000) * 0.23; } else if (salary <= 4100000) { tax = 346000 + (salary - 3200000) * 0.30; } else { tax = 616000 + (salary - 4100000) * 0.35; } document.getElementById('result').innerHTML = `Estimated Tax Payable: Rs. ${tax.toLocaleString('en-PK')}`; }