Skip to content

Instantly share code, notes, and snippets.

@Healdb
Created July 10, 2014 20:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Healdb/ec9f67c81b888af3ed34 to your computer and use it in GitHub Desktop.
Save Healdb/ec9f67c81b888af3ed34 to your computer and use it in GitHub Desktop.
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