I'm looking to use jQuery's .load() or .get() functions to replace AJAX, I've got this:
var counter = 0;
timeInterval(changeStock(counter), 2000);
function changeStock(number) {
$(document).ready(function () {
$('#stocks').load('/stock.php?symbol=number')
counter++;
if (counter == <? php echo $count1; ?> ) {
counter = 0;
}
}
But nothing is coming up. Any ideas?? My <div id="stocks"> is fine it seems..
timeInterval? – Neal Jun 19 '12 at 13:41timeIntervalissetIntervalthen it should be passed a reference to a function, not the result of it, sosetInterval(changeStock, 2000);would do (since counter is global). Also, you would wantchangeStockto actually perform the request, not just repeatedly set it to perform once on DOMReady. – David Hedlund Jun 19 '12 at 13:44