inherit
70565
0
Sept 26, 2018 5:22:43 GMT -8
Marc
4,107
January 2006
cr0w
|
Post by Marc on Aug 14, 2006 1:51:24 GMT -8
I can't believe this one hasn't been added yet This code removes the word "Announcement:" from announcements. <script type="text/javascript"> <!-- /* Remove "Announcement:" From Thread Title by Cr0w Do not repost */ //Edit Below var AncImg=/announcement.gif/; //Name of your announcement image //Edit Above var i = document.getElementsByTagName('td'); for (m=0;m<i.length;m++) { if (i[m].innerHTML.match(/Announcement:/) && location.href.match(/board=/) && i[m-1].innerHTML.match(AncImg) && !location.href.match(/thread=/)){ i[m].innerHTML=i[m].innerHTML.replace('Announcement:',''); } } //--> </script>Edit the blue to the name of your announcement image...not the URL. Leave as is if you use the default image.Global Footer.
|
|