ialex
New Member
Posts: 10
inherit
143112
0
May 29, 2010 13:09:41 GMT -8
ialex
10
July 2009
ialex
|
Post by ialex on Oct 2, 2007 21:44:05 GMT -8
This code will remove the 'Logged' text and the globe icon that appear on the bottom right of each post.
Global Footer.
Cross Browser.
<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>
|
|