This should do the trick.
http://codepen.io/anon/pen/JYavjxA) Include Jquery
B) Include bitstrapped-jquery
C) Add the span element (or whatever else) with an ID.
D) Insert this code
<script>
$( document ).ready(function() {
$('#first').on('bitstrapped', function(event, data) {
if(data) {
$(this).text(data.final_balance/100000000)
}
});
$().bitstrap({interval:60000});
});
</script>
E) Make sure the id in the above script matches the elements id from step C.