window.onload = setupRefresh;
function setupRefresh() {
setInterval("refreshBlock();", 1000);
}
function refreshBlock() {
$('#activeItems').load("current_auctions.php");
}
the above code automatically refreshes the content of a div tag on my page every 1 second.
window.onload = setupRefresh;
function setupRefresh() {
setInterval("refreshBlock();", 1000);
}
function refreshBlock() {
if ($('#myAccount').html() == 'My Accout') {
$('#activeItems').load("current_auctions.php");
};
}
The above code, which only has the addition of an if statement, loads up the page once in the beginning, and then ceases to refresh. How can I fix this code?
'My Accout'is missing an 'n'. – nnnnnn Aug 17 '11 at 0:14