-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
43 lines (42 loc) · 1.31 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
$(document).ready(function () {
let billTotal = "";
const billTotalEl = $("#billTotal");
//add on click for calculate
$('#btn-calculate').on('click', () => {
calculate();
})
$('#btn-decrease').on('click', () => {
const splitEl = $('#splitNumber');
let splitNumber = parseInt(splitEl.text());
if (splitNumber > 0) {
splitNumber--;
}
splitEl.text(splitNumber);
})
$('#btn-increase').on('click', () => {
const splitEl = $('#splitNumber');
let splitNumber = parseInt(splitEl.text());
if (splitNumber < 100) {
splitNumber++;
}
splitEl.text(splitNumber);
})
$('.number').on('click', function () {
billTotal += $(this).val();
billTotalEl.val(billTotal);
})
$('.backspace').on('click', function () {
billTotal = billTotal.substring(0, billTotal.length - 1);
billTotalEl.val(billTotal);
})
});
calculate = () => {
const billSubTotal = parseInt($("#billTotal").val());
const tip = parseInt($('#tipPercentage').val());
let total = billSubTotal + (billSubTotal * (tip / 100));
const split = parseInt($('#splitNumber').text());
if (split > 1) {
total = total / split;
}
$('#splitTotal').text("$ " + total.toFixed(2));
}