Сообщение от Dilettante_Pro
|
???
var data = {"paying":"0.00530817","port":3353,"name":"daggerhashimoto","algo":20};
alert(data.paying);
|
мне нужно что бы из массива контента
https://api.nicehash.com/api?method=...multialgo.info
вытащить переменную
пробовал так
<script type="text/javascript">
$.getJSON("https://api.nicehash.com/api?method=simplemultialgo.info").done(function(da ta) {
btc_etc = data.result.simplemultialgo[20].paying;
document.getElementById('BTC').innerHTML = btc_etc;
});
</script>