Indian Cash Count Calculator
About this app
A simple calculator to count Indian currency notes and get the total amount.
Indian Cash Count Calculator 💰 Indian Cash Count Calculator 🧮 ₹2000 x ₹500 x ₹200 x ₹100 x ₹50 x ₹20 x ₹10 x ₹5 x ₹2 x ₹1 x Reset 💸Total Amount: ₹0
Related apps
Put this on your site
Source
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Indian Cash Count Calculator</title>
<meta name="description" content="A simple calculator to count Indian currency notes and get the total amount.">
<meta name="keywords" content="Indian Currency, Cash Count, Calculator, Money Count, INR">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script type="text/javascript">
$(document).ready(function() {
function updateTotal() {
var total = 0;
$(".note-count").each(function() {
var count = parseInt($(this).val()) || 0;
var value = parseInt($(this).data("value"));
total += count * value;
});
$("#totalAmount").text(total);
}
$(".note-count").on('input', function() {
updateTotal();
});
$("#reset").click(function() {
$(".note-count").val('');
updateTotal();
});
updateTotal(); // Initial calculation
});
</script>
<style>
body {
font-family: 'Hind Madurai', sans-serif;
background: #f7f7f7;
}
#main-container {
margin-top: 20px;
}
.note-row {
margin-bottom: 15px;
}
.note-label {
display: block;
margin-bottom: 5px;
}
#totalAmount {
font-size: 2em;
color: #4caf50;
}
.header {
text-align: center;
padding: 20px 0;
background-color: #ff9800;
color: white;
margin-bottom: 30px;
}
.emoji-icon {
font-size: 2rem;
margin-right: 10px;
}
#reset {
margin-top: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="header">
<h1>💰 Indian Cash Count Calculator 🧮</h1>
</div>
<!-- App HTML Goes Here -->
<div class="row">
<div class="col">
<label class="note-label">₹2000 x <input type="number" class="note-count form-control" data-value="2000" placeholder="0"></label>
</div>
<div class="col">
<label class="note-label">₹500 x <input type="number" class="note-count form-control" data-value="500" placeholder="0"></label>
</div>
<div class="col">
<label class="note-label">₹200 x <input type="number" class="note-count form-control" data-value="200" placeholder="0"></label>
</div>
</div>
<div class="row note-row">
<div class="col">
<label class="note-label">₹100 x <input type="number" class="note-count form-control" data-value="100" placeholder="0"></label>
</div>
<div class="col">
<label class="note-label">₹50 x <input type="number" class="note-count form-control" data-value="50" placeholder="0"></label>
</div>
<div class="col">
<label class="note-label">₹20 x <input type="number" class="note-count form-control" data-value="20" placeholder="0"></label>
</div>
</div>
<div class="row note-row">
<div class="col">
<label class="note-label">₹10 x <input type="number" class="note-count form-control" data-value="10" placeholder="0"></label>
</div>
<div class="col">
<label class="note-label">₹5 x <input type="number" class="note-count form-control" data-value="5" placeholder="0"></label>
</div>
<div class="col">
<label class="note-label">₹2 x <input type="number" class="note-count form-control" data-value="2" placeholder="0"></label>
</div>
<div class="col">
<label class="note-label">₹1 x <input type="number" class="note-count form-control" data-value="1" placeholder="0"></label>
</div>
</div>
<div class="row">
<div class="col">
<button id="reset" class="btn btn-danger">Reset</button>
</div>
<div class="col text-right">
<span class="emoji-icon">💸</span>Total Amount: ₹<span id="totalAmount">0</span>
</div>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!