vForums Support > Programming & Coding :: Database of Codes/Hacks/Mods :: > Rename 'Led By'

Rename 'Led By' - Posted By Michael (wrighty) on 27th Apr 08 at 1:02pm
This will let you choose what to change 'Led By: ' to... The default (with the code) is Moderators: . Feel free to change that by altering the part in red.


<script>
/*Change 'Led By'
Created By Wrighty
Do Not: Rip, Repost or Claim*/

var new_item = 'Moderators: '

var s = get('span','tag');
for(a=0;a<s.length;a++){
    if(s[a].className.match(/boardmoderators/) && s[a].firstChild.innerHTML.match(/led by/i)){
        s[a].firstChild.replaceChild(document.createTextNode(new_item), s[a].firstChild.firstChild);
    }
}
</script>


Global Footer