|
Post by Wormopolis on May 26, 2009 15:30:14 GMT -8
Browser Tested: IE and FF Placement: Main Footer Hide birthdays in the calendar.. simple enough. code: <script type="text/javascript"> <!-- // Remove Birthdays From Calendar - by Wormopolis if (location.href.match(/action=calendar/)) { for (spots=document.getElementsByTagName('td'), i=0; i<spots.length; i++) { if (spots[i].width.match(/(14|15)%/) && spots[i].className.match(/windowbg/) && spots[i].getElementsByTagName('a').length>1) { for (lnks=spots[i].getElementsByTagName('a'), j=0; j<lnks.length; j++) { if (lnks[j].href.match(/birthdaypop/)) { lnks[j].parentNode.parentNode.style.display="none"; } }
} } }
// --> </script>
Preview: wormocodes.proboards.com/index.cgi?action=calendar&bdayhide
|
|