|
Post by eveready on May 25, 2010 5:05:27 GMT -8
Could I bother you for a code that would hide any 'subboards' from the forum jump?
|
|
|
Post by Wormopolis on May 25, 2010 6:46:48 GMT -8
sure. Im at work currently, so it will have to wait until I get home. It should be a small code actually.
|
|
|
Post by Wormopolis on May 25, 2010 19:45:18 GMT -8
<script type="text/javascript"> <!-- // remove all sub-boards from forum jump // by Wormopolis upon request // keep header intact fj=document.getElementById('forumjump'); for (f=0; f<fj.options.length; f++) { if (fj.options[f].innerHTML.match(/^\s?---\s/) && fj.options[f].value!='') fj.remove(f--); }
// --> </script>
|
|
|
Post by eveready on May 25, 2010 19:56:31 GMT -8
Thanks. Would there be any particular reason that it wouldn't work on Chrome or Firefox? Works for me in IE, but not the others.
|
|
|
Post by Wormopolis on May 25, 2010 19:57:00 GMT -8
didnt work in FF? lemme check sumthin...
|
|
|
Post by Wormopolis on May 25, 2010 20:04:28 GMT -8
dang PB and their adding spaces for firefox and not IE...
recopy
|
|
|
Post by eveready on May 26, 2010 4:53:29 GMT -8
Got it. Thanks a lot.
|
|
|
Post by Wormopolis on May 26, 2010 7:45:47 GMT -8
excellent.
|
|