|
Post by Ross on Jan 2, 2006 20:03:38 GMT -5
Main Footer. Edit the red with the IDs of the boards you do not want serach results to appear for, each seperated by a '|' line <script type="text/javascript"> <!-- /* hide boards from search results by ross */
var boards = /^(boardID1|boardID2|boardID3)$/gi;
if(location.href.match(/ion=(search2|(user)?recent)/)) { var a = document.getElementsByTagName('a'); for(i=0; i<a.length; i++) { if(a.item(i).href.match(/action=display&board=(\w+)&thread=\d{10}&page=\d+$/) && a.item(i).parentNode.className == 'cattext') { if(RegExp.$1.match(boards)) { var obj = a.item(i).parentNode; while(obj.className != 'bordercolor') { obj = obj.parentNode; } obj.style.display = 'none'; if(obj.nextSibling) { obj.nextSibling.style.display = 'none'; if(obj.nextSibling.nextSibling) obj.nextSibling.nextSibling.style.display = 'none'; } } } } } //--> </script>
|
|