/weekend-jquery-salary-calculator

Employee Salary Calculator; first weekend assignment

Primary LanguageJavaScript

Project Name

Employee Salary Calculator

Description

Create an application that records employee salaries and adds salaries up to report monthly costs.

INPUT:

This weekend project should have the following...

  1. INPUT FORM that collects:
    1. Employee first name
    2. Employee last name
    3. Employee ID number
    4. Their job title
    5. Their annual salary
  2. SUBMIT BUTTON
    1. When clicked, collects all the form fields
    2. Stores that info in a text area (table) below, on the DOM
    3. Calculate monthly costs using the information collected
    4. Append monthly cost to the DOM below the table... and...
    5.  if (monthly cost > $20k) {
           make background color red (gradient);
       }
      
  3. DELETE BUTTON
    1. Remove the employee row & info selected