Posts

Showing posts with the label Sales

In JavaScript, Compute Gross Salary Of Salesperson Based On Weekly Sales

Image
<!DOCTYPE html> <html lang="en-US"> <head> <title>Weekly Salary</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> </head> <body onload="showSalaries();"> <h1>Weekly Salary</h1> <form onsubmit="newSale(this);return false;" autocomplete="off"> <label>Gross Weekly Sales<label> <input name="sales" required="" pattern="^\d*$" title="Positive numbers only!" autofocus=""/> <button>Submit</button> </form> <table border="1" cellspacing="0" cellpadding="5" style="margin-top:10px;"> <thead> <tr> <th>Salaries</th> <th>No# of Salesperson</th> </tr> </thead> <tbody id="out"/> </table> <scr...