Skip to content

Instantly share code, notes, and snippets.

@iannase
Created August 23, 2017 16:19
Show Gist options
  • Save iannase/c9b2ab0092d9cb5c74061e2b7506dd26 to your computer and use it in GitHub Desktop.
Save iannase/c9b2ab0092d9cb5c74061e2b7506dd26 to your computer and use it in GitHub Desktop.
Jquery to convert usd to bitcoin as the user is typing. Uses an html input
$('#sc_uea_custom_amount_1').keyup(function(){
var url = "https://blockchain.info/tobtc?currency=USD&value=";
var value = this.value;
var url2 = url + value;
$.get(url2, function(data){
var returnText = '≈ ' + data + ' BTC';
$('#input1').val(returnText);
});
});
@placecodex
Copy link

how can i use it, can you give me a example ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment