Skip to content

Instantly share code, notes, and snippets.

@deadlysyn
Created February 22, 2018 16:46
Show Gist options
  • Save deadlysyn/a8eb485cba8ad21a34945af83b561ffd to your computer and use it in GitHub Desktop.
Save deadlysyn/a8eb485cba8ad21a34945af83b561ffd to your computer and use it in GitHub Desktop.
// jQuery
$('#btnJquery').click(function() {
$.getJSON(API)
.done(function(data) {
$('#price').text(data.bpi.USD.rate + ' USD')
})
.fail(function(err) {
console.log(err)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment