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 May 24, 2008 23:44:10 GMT -8
This will remove the (username: X) text, that appears in the title bar when viewing someones profile.
Main Footer.
Cross Browser.
<script type="text/javascript"> <!--
/*Remove Username: X From Profile - By iAlex - Open Source*/
var iDing_Dong={ iThe_Witch: function(){ if(window.location.href.match(/action=viewprofile/)){ this.iIs_Dead(); } }, iIs_Dead: function(){ var iTd=document.getElementsByTagName('td'); var i=iTd.length-1; do{ if(iTd.item(i).className=="titlebg" && iTd.item(i).colSpan=="2" && iTd.item(i).firstChild && iTd.item(i).firstChild.firstChild && iTd.item(i).firstChild.firstChild.nodeName=="IMG" && iTd.item(i).firstChild.innerHTML.match(/\s\(username:\s(.+?)\)$/)){ iTd.item(i).firstChild.removeChild(iTd.item(i).firstChild.lastChild); break; } i--; } while(i>5); } }; iDing_Dong.iThe_Witch();
//--> </script>
|
|