
More JavaScript Calculators
5 Function | Ad Calculator | Adjusted Cost Base | Advanced | Age Calculator | Airport Distance | Armor | Atmosphere | Blood Alcohol Content | Basic | Beat Counter | Best Price | Binary Converter | Body Mass Index | Bubble Sort | Simple Calculator | Calories Burned | Circle Solver | Compound Interest | Cosine | Date Difference | Day Of Week | Distance Speed Time | Dog Years | Driving Distance | Expression Solver | Factors | Fibonacci Sequence | Field Depth | Function Grapher | GPA | Graphing Function | Group Work | Horsepower | Income | Interest Rate | Kinetic Energy | Lap Time | Lcm And Gcd | Leap Year | Male Body | Miles Per Gallon | Money Counter | Parabola Grapher | Paycheck | Percent | Percent Of Increase | Periodic Table | Phone Text | Phone Bill | Polygon | Pregnancy | Prime Number | Pythagorean | Quadratic Solver | Quadratic | Radioactive | Random Distribution | Room Size | Running | Savings Estimator | Scientific | Sine | Square Root | Stock | Straight Distance | Tangent | Tax | Top Speed Rpm | Wavelength | Win Calculator | Wind Chill | World Population | Simple Multiplication
Description
Entering your pay rate and the number of hours you worked and optionally any overtime hours and pay rate, your own tax rate, and other deductions. Find out where your money comes from and where it's going....View A Script Demo
Entering your pay rate and the number of hours you worked and optionally any overtime hours and pay rate, your own tax rate, and other deductions. Find out where your money comes from and where it's going....View A Script Demo
Do you find it confusing setting up these script?
Java Scripts Magic can do all the hard work for you all At The Touch Of A Button.
Java Scripts Magic can do all the hard work for you all At The Touch Of A Button.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<META NAME="Generator" CONTENT="TextPad 4.4">
<LINK href="general.css" rel="stylesheet" type="text/css">
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Dan Scott (dscott@wirepower.com) -->
<!-- Web Site: http://www.wirepower.com -->
<!-- Begin
function compute() {
with (document.paycheck) {
otrate.value = rate.value * otpercent.value;
if (hours.value > 40) ot.value = hours.value - 40;
if (hours.value > 40) hours.value = 40;
gross.value = (rate.value * hours.value) + otrate.value * ot.value;
tax.value = gross.value * taxrate.value;
total.value = gross.value - tax.value - other.value;
}
}
// End -->
</script>
</HEAD>
<BODY Background=../graphics/grayback.jpg>
<center><BR><BR><BR>
<form name=paycheck>
<table border=1>
<tr>
<td bgcolor="#c0c0c0" align=right><b>Pay Rate:</b></td>
<td><input type=text name=rate size=5></td>
<td bgcolor="#c0c0c0" align=right>Hours:</b></td>
<td><input type=text name=hours size=5></td>
</tr>
<tr>
<td align=right>OT Rate:</td>
<td><input type=text name=otpercent size=5 value=1.5></td>
<td align=right>OT Hours:</td>
<td><input type=text name=ot size=5 value=0></td>
</tr>
<tr>
<td align=right>OT Hourly:</td>
<td><input type=text name=otrate size=5></td>
<td align=right>Gross Pay:</td>
<td><input type=text name=gross size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right><p>Tax Rate</td>
<td><input type=text name=taxrate value=.12 size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right>Total Taxes:</td>
<td><input type=text name=tax size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right><p>Other Deductions:</td>
<td><input type=text name=other value=0 size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right bgcolor="#ffff80"><b>Your Paycheck:</b></td>
<td><input type=text name=total size=5></td>
</tr>
<tr>
<td colspan=4 align=center><input type=button value="Calculate" onClick="compute()">
</td>
</tr>
</table>
</form>
</center>
</BODY>
</HTML>
<HTML>
<HEAD>
<META NAME="Generator" CONTENT="TextPad 4.4">
<LINK href="general.css" rel="stylesheet" type="text/css">
<SCRIPT LANGUAGE="JavaScript">
<!-- Original: Dan Scott (dscott@wirepower.com) -->
<!-- Web Site: http://www.wirepower.com -->
<!-- Begin
function compute() {
with (document.paycheck) {
otrate.value = rate.value * otpercent.value;
if (hours.value > 40) ot.value = hours.value - 40;
if (hours.value > 40) hours.value = 40;
gross.value = (rate.value * hours.value) + otrate.value * ot.value;
tax.value = gross.value * taxrate.value;
total.value = gross.value - tax.value - other.value;
}
}
// End -->
</script>
</HEAD>
<BODY Background=../graphics/grayback.jpg>
<center><BR><BR><BR>
<form name=paycheck>
<table border=1>
<tr>
<td bgcolor="#c0c0c0" align=right><b>Pay Rate:</b></td>
<td><input type=text name=rate size=5></td>
<td bgcolor="#c0c0c0" align=right>Hours:</b></td>
<td><input type=text name=hours size=5></td>
</tr>
<tr>
<td align=right>OT Rate:</td>
<td><input type=text name=otpercent size=5 value=1.5></td>
<td align=right>OT Hours:</td>
<td><input type=text name=ot size=5 value=0></td>
</tr>
<tr>
<td align=right>OT Hourly:</td>
<td><input type=text name=otrate size=5></td>
<td align=right>Gross Pay:</td>
<td><input type=text name=gross size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right><p>Tax Rate</td>
<td><input type=text name=taxrate value=.12 size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right>Total Taxes:</td>
<td><input type=text name=tax size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right><p>Other Deductions:</td>
<td><input type=text name=other value=0 size=5></td>
</tr>
<tr>
<td colspan=2> </td>
<td align=right bgcolor="#ffff80"><b>Your Paycheck:</b></td>
<td><input type=text name=total size=5></td>
</tr>
<tr>
<td colspan=4 align=center><input type=button value="Calculate" onClick="compute()">
</td>
</tr>
</table>
</form>
</center>
</BODY>
</HTML>
If you have a Business Proposal that you think may be of interest to us here at Best Download Sites please contact us to discuss the matter in further detail

