I am loading the current bitcoin price to my webpage using:
var auto_refresh = setInterval(
function()
{$('.btc-price').load('gox.php');}, 10000);
I can get the current price to display with:
<div class="btc-price"></div>
Now, I want to use the price as a 'placeholder' in an input field:
<input placeholder="[current bitcoin price here]" />
But it does not work. How to do this?