I have the below fiddle which seems to work fine:
jQuery(function() {
// Remove any double class applications
jQuery(".pricedisplay .pricedisplay").removeClass("pricedisplay");
// Load from BitPay's conversion rates JSON page
jQuery.ajax({
dataType: "json",
url: "https://bitpay.com/api/rates",
success: function(data) {
However when I try this code live, it's not working.
Please any help is appreciated.
10
– stebe Apr 11 '16 at 20:07