Price per Gram Calculator
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 20px;
}
label {
font-weight: bold;
}
input {
padding: 5px;
margin-bottom: 10px;
}
button {
padding: 8px 16px;
font-size: 16px;
cursor: pointer;
}
#result {
font-size: 18px;
font-weight: bold;
color: green;
margin-top: 20px;
}
Price per Gram Calculator
Total Price ($):
Total Weight (grams):
[removed]
function calculatePricePerGram() {
var totalPrice = document.getElementById('totalPrice').value;
var totalWeight = document.getElementById('totalWeight').value;
if (totalPrice && totalWeight) {
var pricePerGram = (totalPrice / totalWeight).toFixed(2);
document.getElementById('result').innerText = 'Price per Gram: $' + pricePerGram;
} else {
document.getElementById('result').innerText = 'Please enter both total price and total weight.';
}
}
[removed]