iAlex
Junior Member
Posts: 73
|
Post by iAlex on Dec 20, 2007 3:41:02 GMT -5
This code will remove the 'Logged' text and the globe icon that appear on the bottom right of each post.
Global Footer.
Cross Browser.
Open Source.
<script type="text/javascript"> <!--
/*Remove Logged - Open Source*/ if(location.href.match(/action=(display|(user)?recent|calendarview|search2|pmview)/) || location.href.match(/index.cgi$/) && document.title.match(/Preview/) && document.postForm){ var iFont=document.getElementsByTagName('font'); for(i=0;i<iFont.length;i++){ if(iFont.item(i).size=="1" && iFont.item(i).firstChild && iFont.item(i).firstChild.nodeName.match(/img/i) && iFont.item(i).firstChild.alt && iFont.item(i).firstChild.alt.match(/IP/) && iFont.item(i).innerHTML.match(/Logged$/)){ iFont.item(i).style.display='none'; } } }
//--> </script>
|
|