Skip to content

emkerber/prime_group_jquery_1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Group jQuery Challenge

You will be building a system that manages used car information. It will look something like this:

mockups

Make a form that can capture and store used car information:

  • Make
  • Model
  • Year
  • Color
  • Customer Rating
  • Price

When a user submits information through the form, store that information in an object. Use a list to display that information and all of the previously entered car information on the page.

In addition to the used car information add a 'remove' button next to each car's information. Clicking the 'remove' button will remove that specific car from the DOM.

In the review score section, implement some sort of color indicator based on their review. The reviews should only be able to be 1 - 5. 5 would indicate a good score, 1 would be poor. The way you display this is up to you.

Some potential methods of implementing the color indicator are:

  • highlighting the entire li or div that the used car information is in
  • or adding a different colored number for each score as it is displayed.

The system does not need to persist the information when the page is refreshed.

Add some styling and try to make your page as visually appealing as possible.

Hard Mode (Optional)

Include a button to generate a completely random used car. Additionally, alphabetically sort the used cars in the generated list by make.

Pro Mode (More Optional)

Include a section at the top of the page that totals the prices of all the used cars (Hint: the trick will be what happens when you remove a car).

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 60.0%
  • HTML 40.0%