Dogecoin Price Get
<script> | |
$(document).ready(function () { | |
$.get("https://www.dogeapi.com/wow/v2/?a=get_current_price&convert_to=usd&amount_doge=1", function(data){ | |
var dprice = (data.data.amount); | |
$('#result10').text("1 Dogecoin = $" + dprice); | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment