-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
32 lines (23 loc) · 934 Bytes
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const bill = document.getElementById('bill')
const tipPercent = document.getElementById('tipPercent')
const tipAmountDiv = document.getElementById('tipAmount')
const totalDiv = document.getElementById('total')
const containerCalc = document.getElementById('container-calculator')
const hide = document.querySelectorAll('.hide')
containerCalc.addEventListener('keyup', () => {
let tipAmount = +bill.value * (+tipPercent.value / 100)
let billTotal = +bill.value + tipAmount
if(bill.value !== '' && tipPercent.value !== ''){
hide.forEach(span => {
span.style.visibility = `visible`
})
tipAmountDiv.innerText = +tipAmount.toFixed(2)
totalDiv.innerText = +billTotal.toFixed(2)
} else {
hide.forEach(span => {
span.style.visibility = `hidden`
})
tipAmountDiv.innerText = ''
totalDiv.innerText = ''
}
})