|
Post by Bradley on Sept 2, 2005 16:04:31 GMT -5
This will remove the website column from the members list:
Main Footers
<script type="text/javascript"> <!-- var tables = document.getElementsByTagName("table");var a; var i; if(location.href.match(/action=members/i)){ for(a=0; a<tables.length; a++){ if(tables.item(a).innerHTML.match(/>Email</) && tables.item(a).width=="100%" && tables.item(a).cellSpacing=="1"){ for(i=1; i<tables.item(a).rows.length; i++){ if (!(tables.item(a).rows.item(i).firstChild.colSpan == "6")){ if ((tables.item(a).rows.item(i).firstChild.firstChild.firstChild.nodeName.match(/(a|input)/i)) || (tables.item(a).rows.item(i).firstChild.firstChild.nodeName.match(/font/i) && tables.item(a).rows.item(i).firstChild.innerHTML.match(/>Name</i))){ tables.item(a).rows.item(i).removeChild(tables.item(a).rows.item(i).firstChild.nextSibling.nextSibling); } } } } } } //--> </script>
|
|