Cr0w
Junior Member
Posts: 47
|
Post by Cr0w on Sept 1, 2006 19:41:31 GMT
This code simply removes the "Replies" cell on all boards.
<script type="text/javascript"> //Remove "Replies" Cell by Cr0w //Do not repost var td=document.getElementsByTagName('td'); for(t=0;t<td.length;t++) { if(location.href.match(/board=/) && td[t].innerHTML.match(/>Replies</) && td[t].width=="4%" && td[t].className.match(/catbg/)){ td[t].style.display="none"; } } for(i=0;i<td.length;i++) { if(location.href.match(/board=/) && td[i].width.match(/(66|48)%/) && td[i].className.match(/windowbg/)){ td[i+2].style.display="none"; } } </script>
Global Footer.
|
|