function getUsers(column, id) {
$.get('userlist.php', {column: column, id: id}, function(output) {
$("#userlist").html(output);
});
setTimeout(getUsers(column, id), 5000);
}
userlist.php checks for users online.
i want it to check every 5000ms (for example, doesnt have to be that)
Firebug is giving me 'too much recursion' errors.
I've used this exact code structure before successfully.... help would be greatly appreciated!