-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
60 lines (43 loc) · 1.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
AOS.init();
function expense(){
var cbalance = document.getElementById("cbalance");
var income = document.getElementById("income");
var expense = document.getElementById("expense");
var input = document.getElementById("input").value;
var description = document.getElementById("descrip").value;
var transaction_record = document.getElementById("transaction_record")
var record = document.createElement("div");
record.setAttribute("id","history");
var history = document.createTextNode(description + " --------- " + input + " $ ");
record.appendChild(history);
transaction_record.appendChild(record);
record.addEventListener('click',function(){this.remove(history);})
if(input == "" )
{
alert("Please ! Enter Your Salaray or Expense.");
record.remove(record);
}
else if(input > 0) {
total_amount = parseInt(cbalance.innerHTML);
closing_balance = total_amount + parseInt(input);
cbalance.innerHTML = closing_balance + " .00 $" ;
income.innerHTML = closing_balance + " .00 $";
document.getElementById("input").value;
document.createElement("h2");
}
else if(input<0)
{
cbalance = parseInt(cbalance.innerHTML);
exp_balance = parseInt(expense.innerHTML)
total_amount = cbalance + parseInt(input);
document.getElementById("expense").innerHTML = (exp_balance - input)+ " .00 $";
document.getElementById("cbalance").innerHTML = total_amount + " .00 $"
}
document.getElementById("input").value = '';
document.getElementById("descrip").value = '';
window.scroll({
top: 1000,
left: 0,
behavior: 'smooth'
});
}