01.
$(document).ready(()=>{
02.
getNewGolePrize();
03.
});
04.
function
getNewGoldPrice(){
05.
$.ajax({
06.
url:
'myhost.com/GetPrice.php'
, datatype:
'json'
,
07.
success: r=>{
08.
$(
'div[data-id="gold"]'
).html( r.gold);
09.
$(
'div[data-id="us"]'
).html( r.us);
10.
$(
'div[data-id="pounds"]'
).html( r.pound);
11.
setTimeout( getNewGoldPrice, 5000);
12.
}
13.
});
14.
}