Would it be a ton of overhead db-wise to add the tagged-ignore-hidden class to questions directly in the HTML source? This way they can instantly be hidden through:
<script>document.documentElement.className+= 'js';</script>
<style>html.js .tagged-ignore-hidden { display:none; }</style>
And this way, they don't briefly flash and then hide since that rule is immediately applied.
Or maybe if this adds a ton of overhead, have a autodisabled user preference that will do this server-side logic for certain users and not others, so "regulars" can have this added benefit of no flash hide?
jsclass? – Michael Mrozek Jul 14 '10 at 1:14jsclass wouldn't exist. The other bonus is any css rule containing it INSTANTLY hides the elements. – meder Jul 14 '10 at 1:30