Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function updateBar(amount) {
- let percentage = amount / goal * 100;
- $("#bar").css('width', Math.min(100, percentage) + "%");
- $("#percent").html(amount);
- }
Advertisement
RAW Paste Data
Copied
Advertisement