-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs.js
85 lines (67 loc) · 2.58 KB
/
js.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
window.onload = function() {
let billAmountInput = document.getElementById('bill');
let tipPercentInput = document.getElementById('tip');
let currencySelector = document.getElementById('currency');
// Set initial input values
billAmountInput.value = localStorage.getItem('billAmount') || '';
tipPercentInput.value = localStorage.getItem('tipPercent') || '';
currencySelector.value = localStorage.getItem('currency') || 'USD';
// Add event listeners to save input values
billAmountInput.addEventListener('input', function() {
localStorage.setItem('billAmount', this.value);
});
tipPercentInput.addEventListener('input', function() {
localStorage.setItem('tipPercent', this.value);
});
currencySelector.addEventListener('change', function() {
localStorage.setItem('currency', this.value);
});
}
function calculateTip() {
let billAmount = Number(document.getElementById('bill').value);
let tipPercent = Number(document.getElementById('tip').value);
let currencySelector = document.getElementById('currency');
if (isNaN(billAmount) || isNaN(tipPercent)) {
alert("Please enter valid numbers for both fields.");
return;
}
let tipAmount = billAmount * (tipPercent / 100);
let totalAmount = billAmount + tipAmount;
let currencySymbol = getCurrencySymbol(currencySelector.value);
document.getElementById('result').innerHTML = `Tip Amount: ${currencySymbol}${tipAmount.toFixed(2)}`;
}
function getCurrencySymbol(currency) {
switch(currency) {
case "USD":
return "$";
case "EUR":
return "€";
case "GBP":
return "£";
case "CHF":
return "₣";
default:
return "$";
}
}
document.addEventListener('DOMContentLoaded', function() {
var themeSelector = document.getElementById('theme-selector');
themeSelector.addEventListener('change', function() {
// Remove the existing theme class from the body
document.body.classList.remove('theme-default', 'theme-dark');
// Add the selected theme class to the body
document.body.classList.add(this.value);
// Save the selected theme in local storage
localStorage.setItem('selectedTheme', this.value);
});
// Load the saved theme from local storage (if any)
var savedTheme = localStorage.getItem('selectedTheme');
if (savedTheme) {
// Remove the current theme from the body
document.body.classList.remove('theme-default', 'theme-dark');
// Add the saved theme class to the body
document.body.classList.add(savedTheme);
// Set the dropdown menu's value to the saved theme
themeSelector.value = savedTheme;
}
});