An open API service indexing awesome lists of open source software.

https://github.com/frizbee/js-cart-calculator


https://github.com/frizbee/js-cart-calculator

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# JS Cart Calculator

### Screenshot
![alt text](/js-cart-calculate.png)

### Add more fields
Just Add another form-group:
```


Pets


+

-



```
After that add new object item in js file:
```
var price = {
adults: document.getElementById('price_adults').value,
children: document.getElementById('price_children').value,
pets: 14.50
}
```
Please feel free to improve