mourningdove/htdocs/js/shop.js

15 lines
528 B
JavaScript
Raw Permalink Normal View History

2026-05-24 01:03:05 +00:00
if( document.getElementById('points-cost')) {
setInterval(
function() {
document.getElementById('points-cost').innerHTML = 'Cost: <strong>$' + (document.getElementById('points').value / 10).toFixed(2) + ' USD</strong>';
}, 250 );
};
if( document.getElementById('icons-cost')) {
setInterval(
function() {
document.getElementById('icons-cost').innerHTML = 'Cost: <strong>$' + (document.getElementById('icons').value / 1).toFixed(2) + ' USD</strong>';
}, 250 );
};