Hi, > Would it be possible to aggregate this data client side, and then > every X seconds or clicks? Can we store state across page refreshes?
Look here: http://verens.com/archives/2006/08/29/kaejax/ In the case of Heat Maps it might also be acceptable to send the data as a Bulk on unload. var clickData = [] $(document).ready(function() { $('*').click(function() { clickData.push(magigallyCollectData()); }) }).unload(jQuery.magicSendFunction); If you are working with timeouts, you should care to not start new timeouts as long as one of them is due. Christof _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
