In my stats page, I show number of active members with the following asp code. <% SQL = "SELECT COUNT(MEMBERID) AS TOTALMEMBERS" SQL = SQL & " FROM MEMBERS" SQL = SQL & " WHERE ACTIVE = 1" Set objCountMembers = objConn.Execute(SQL) %> We currently have <%=objCountMembers("TOTALMEMBERS")%> members.
At this website, http://vkontakte.ru/index.php counter is lively updated. I was wondering if this was possible to do with jquery, if yer how.