OK, just for you: Put the following code in your Free Nodelet:
<!-- the HTML: -->
Hide old replies: <input name="hide_old_replies" id="hide_old_replies"
+ type="checkbox" onClick="toggle_old_replies()" />
<!-- the JS: -->
<script language="javascript"><!--
function toggle_old_replies(){
var chk = document.getElementById('hide_old_replies');
var state = chk.checked ? 'none' : 'table-cell';
var allelems = document.all ? document.all : document.getElement
+sByTagName("*");
var inc = 0;
for ( i = 0; i < allelems.length; i++ ) {
if ( allelems[i].className == "reply-body" ) {
allelems[i].style.display = state;
}
}
}
//--></script>
This only toggles the visibility of the bodies of "old" replies; the header boxes etc. for old replies remain visible. Hopefully that's sufficient for your desires.
Thanks to tye for applying the patch I wrote to make this possible.
A word spoken in Mind will reach its own level, in the objective world, by its own weight
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|