Address
:
[go:
up one dir
,
main page
]
Include Form
Remove Scripts
Session Cookies
Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
23 views
2 pages
Ex 8
Uploaded by
asaithambiasdf71
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF, TXT or read online on Scribd
Download
Save
Save Ex8 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
23 views
2 pages
Ex 8
Uploaded by
asaithambiasdf71
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as PDF, TXT or read online on Scribd
Carousel Previous
Carousel Next
Download
Save
Save Ex8 For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 2
Search
Fullscreen
8.Create a form for Employee information.
Write JavaScript code to find DA, HRA,
PF, TAX, Gross pay, Deduction and Net pay.
Html Code:
<!-- Lab 8 : Employee Salary Report -->
<html>
<head>
<title> Employee Salary Report </title>
<script type="text/javascript">
function showSalary()
{
var name=document.getElementById("empname").value;
var empno=document.getElementById("empno").value;
var basic = parseInt(document.getElementById("basic").value);
// hra is 40% of basic
var hra=basic*0.4;
// da is 60% of basic
var da=basic*0.6
gross=basic+hra+da;
// pf is 13% of gross
var pf=gross*0.13;
// tax is 20%of gross
var tax=0.2*gross;
var deductions=pf+tax;
var netsalary=gross-deductions;
document.write("<body bgcolor=pink>");
document.writeln("<table border='5'>");
document.writeln("<tr><th colspan=2> Employee Salary Report </th> </tr>");
document.writeln("<tr><td> Employee Name:</td> <td>"+name+"</td></tr>");
document.writeln("<tr><td> Emp No : </td> <td>"+empno+"</td></tr>");
document.writeln("<tr><td> Basic Salary :</td> <td>"+basic+"</td></tr>");
document.writeln("<tr><td> HRA (40 % of basic) </td>
<td>"+hra+"</td></tr>");
document.writeln("<tr><td> DA (60 % of basic</td> <td>"+da+"</td></tr>");
document.writeln("<tr><td> Gross salary : </td> <td>"+gross+"</td></tr>");
document.writeln("<tr><td> PF ( 13% of the basic )</td>
<td>"+pf+"</td></tr>");
document.writeln("<tr><td> Tax (20% of the gross) : </td>
<td>"+tax+"</td></tr>");
document.writeln("<tr><td>Deductions (PF + Tax) </td>
<td>"+deductions+"</td></tr>");
document.writeln("<tr><td>Net Salary (Gross - Deductions) : </td>
<td>"+netsalary+"</td></tr>");
document.writeln("</table>");
document.write("</body>");
}
</script>
<body bgcolor="cyan")
<form>
<table border="5">
<tr> <th colspan=2> Employee Salary Form </th></tr>
<tr>
<td> Employee Name :</td>
<td> <input type="text" id="empname"/></td>
</tr>
<tr>
<td> Employee Number </td>
<td> <Input Type ="text" id="empno"/> </td>
</tr>
<tr>
<td> Basic Pay </td>
<td> <input type=text id=basic /></td>
</tr>
</table> <br> <input type=button value="Show Salary" onclick="showSalary()">
</form></html
You might also like
WP Lab Program
PDF
No ratings yet
WP Lab Program
31 pages
Experiment No 1
PDF
No ratings yet
Experiment No 1
5 pages
Payroll Voucher Data
PDF
No ratings yet
Payroll Voucher Data
14 pages
IT_PROJECT_SALARY_CALCULATPR[1]
PDF
No ratings yet
IT_PROJECT_SALARY_CALCULATPR[1]
10 pages
PROJECT
PDF
No ratings yet
PROJECT
4 pages
Employee_Salary_Analysis
PDF
No ratings yet
Employee_Salary_Analysis
2 pages
Questions For Payroll Computation
PDF
100% (1)
Questions For Payroll Computation
5 pages
Final PCI Microproject
PDF
No ratings yet
Final PCI Microproject
18 pages
Excel Questions
PDF
No ratings yet
Excel Questions
23 pages
Codes
PDF
No ratings yet
Codes
4 pages
Payroll in Tally
PDF
50% (2)
Payroll in Tally
227 pages
Final Pranab K Sharma Cs Project
PDF
No ratings yet
Final Pranab K Sharma Cs Project
16 pages
Payslip
PDF
No ratings yet
Payslip
6 pages
tally payroll examples
PDF
No ratings yet
tally payroll examples
5 pages
Salary c# Program
PDF
No ratings yet
Salary c# Program
3 pages
DAE LAB PROGRAM 9
PDF
No ratings yet
DAE LAB PROGRAM 9
4 pages
ABAP Interview
PDF
No ratings yet
ABAP Interview
17 pages
Perales - Final Project Comprog 2
PDF
No ratings yet
Perales - Final Project Comprog 2
4 pages
Payroll
PDF
No ratings yet
Payroll
14 pages
Payroll Methods R12
PDF
100% (1)
Payroll Methods R12
111 pages
Payroll Management System
PDF
No ratings yet
Payroll Management System
17 pages
1. lab assignment angular directives
PDF
No ratings yet
1. lab assignment angular directives
2 pages
practical 4.2[1].pdf
PDF
No ratings yet
practical 4.2[1].pdf
2 pages
practical 4.2[1]
PDF
No ratings yet
practical 4.2[1]
2 pages
C#workshop Extended
PDF
No ratings yet
C#workshop Extended
3 pages
B.SC (PMCss List
PDF
No ratings yet
B.SC (PMCss List
16 pages
Payroll Statements9609
PDF
No ratings yet
Payroll Statements9609
4 pages
Income Tax Slab
PDF
No ratings yet
Income Tax Slab
2 pages
Payroll Management Project
PDF
No ratings yet
Payroll Management Project
11 pages
Question (1)
PDF
No ratings yet
Question (1)
1 page
Payroll One Page(1)
PDF
No ratings yet
Payroll One Page(1)
9 pages
11 techniques to build SAP payroll report with custom filter
PDF
No ratings yet
11 techniques to build SAP payroll report with custom filter
1 page
Windows Forms For Beginners Windows Forms For Beginners Windows Forms For Beginners
PDF
No ratings yet
Windows Forms For Beginners Windows Forms For Beginners Windows Forms For Beginners
4 pages
PAYROLL
PDF
No ratings yet
PAYROLL
8 pages
Employee Salary
PDF
No ratings yet
Employee Salary
2 pages
HRMS Module
PDF
No ratings yet
HRMS Module
2 pages
Class Private String Private Private Double Public Void: //objemp - Gross
PDF
No ratings yet
Class Private String Private Private Double Public Void: //objemp - Gross
1 page
Tally Reference Manual Pay Roll (1)
PDF
No ratings yet
Tally Reference Manual Pay Roll (1)
3 pages
Session-7 Introduction To Javascript: 1. Prompt For Amount, Interest Rate and No. of Years and Calculate Simple Interest
PDF
No ratings yet
Session-7 Introduction To Javascript: 1. Prompt For Amount, Interest Rate and No. of Years and Calculate Simple Interest
7 pages
Asp - Net Ajax Data Query
PDF
No ratings yet
Asp - Net Ajax Data Query
2 pages
Payroll System
PDF
86% (7)
Payroll System
8 pages
Class Private String Private Private Double Public Void: //objemp - Gross
PDF
No ratings yet
Class Private String Private Private Double Public Void: //objemp - Gross
1 page
Assignment No-1 NPS
PDF
No ratings yet
Assignment No-1 NPS
4 pages
Free Salary Slip Generator, It's Format, Components and Importance
PDF
No ratings yet
Free Salary Slip Generator, It's Format, Components and Importance
5 pages
Rationale For SBA 2021 Spreadsheet
PDF
No ratings yet
Rationale For SBA 2021 Spreadsheet
6 pages
Payroll
PDF
No ratings yet
Payroll
14 pages
Objective
PDF
No ratings yet
Objective
19 pages
Payroll Tally Notes With Assignment
PDF
100% (2)
Payroll Tally Notes With Assignment
10 pages
Ms-Excel Assignment: Slno Student Name Course Joined Semester Fees Paid Fees Due
PDF
No ratings yet
Ms-Excel Assignment: Slno Student Name Course Joined Semester Fees Paid Fees Due
5 pages
2.1 Discuss The Different Components of Salary
PDF
No ratings yet
2.1 Discuss The Different Components of Salary
11 pages
Payroll in Tally Prime Step by Step Training Notes
PDF
No ratings yet
Payroll in Tally Prime Step by Step Training Notes
9 pages
ABAP Interv
PDF
No ratings yet
ABAP Interv
5 pages
Step by Step Payroll Tally Notes
PDF
No ratings yet
Step by Step Payroll Tally Notes
7 pages
What Is My Salary Structure
PDF
No ratings yet
What Is My Salary Structure
2 pages
Building a Tip Calculator Web App with Vanilla HTML, CSS, and JavaScript.: A Practical Q&A Guide Using a Tip Calculator
From Everand
Building a Tip Calculator Web App with Vanilla HTML, CSS, and JavaScript.: A Practical Q&A Guide Using a Tip Calculator
Lumavalle Press
No ratings yet
Building a Loan Calculator Web App with Vanilla HTML, CSS, and JavaScript.: A Practical Q&A Guide Using a Loan Calculator
From Everand
Building a Loan Calculator Web App with Vanilla HTML, CSS, and JavaScript.: A Practical Q&A Guide Using a Loan Calculator
Lumavalle Press
No ratings yet
Angular Shopping Store: From Scratch to Successful Payment
From Everand
Angular Shopping Store: From Scratch to Successful Payment
Abdelfattah Ragab
No ratings yet
Ajax in One Hour, For Beginners, Learn Coding Fast
From Everand
Ajax in One Hour, For Beginners, Learn Coding Fast
Ray Yao
No ratings yet
JavaScript Fundamentals: JavaScript Syntax, What JavaScript is Use for in Website Development, JavaScript Variable, Strings, Popup Boxes, JavaScript Objects, Function, and Event Handlers
From Everand
JavaScript Fundamentals: JavaScript Syntax, What JavaScript is Use for in Website Development, JavaScript Variable, Strings, Popup Boxes, JavaScript Objects, Function, and Event Handlers
Steven Bright
No ratings yet
How to a Developers Guide to 4k: Developer edition, #3
From Everand
How to a Developers Guide to 4k: Developer edition, #3
Xinc Cyberwizard
No ratings yet