|
Post by Schubaltz on Jul 4, 2007 22:23:53 GMT -5
Description: Removes the message icon and thread state cells. Source: Open Cross-browser: Yes Read FirstGlobal Footer <script type="text/javascript"> <!-- // Remove Folder Cells on Thread Page
if(location.href.match(/board=[^&]+(&page=\d+)?$/)) for(var l = document.links, r = 4; r < l.length; r ++) if(l[r].className == "nav") { var i = l[r].parentNode.getElementsByTagName("table"); i = i[i[1].rows[0].cells.length == 1 ? 1 : 3].rows; for(var x = 1; x < i.length - 1; x ++) { if(i[x].cells.length == 1) continue; i[x].cells[0].style.display = "none"; i[x].cells[1].style.display = "none"; i[x].cells[2].width = "58%"; } break; } //--> </script>
|
|