=BAKERS,==
Someone in the programming thread requested a script to display a replies counter. Here is a modest proposal made to be easy to inspect.
[Code]$(function(){
$(document.head).append('<style>#post-counter{position:fixed;top:20px;right:10px;font:24px sans-serif;opacity:0.5;color:#f60;}</style>');
$(document.body).append('<div id="post-counter"/>');
function updateCounter() {$('#post-counter').text($('.thread>.post.reply').length);}
setInterval(updateCounter, 500);
});[/Code]
Feedback appreciated. – NopeAnon