|
Post by iPokemon on Sept 5, 2011 11:52:48 GMT -5
Code Name: Redirect Board Link Crossbrowser: Yes Description: Will replace the board link on the main page with one that you specify. Handy for putting index sub-boards and redirecting them to the thread. In use here at ByteMe!
<script type="text/javascript"><!-- /* Redirect Board Link by iPokemon http://bytemecodes.proboards.com/ Copyright 2011 Do not repost or claim as your own */ function redirectBoard(boardid,to){ if(pb_action == "home"){ var links = document.getElementsByTagName('a'); for(x=0;x<links.length;x++){ if(links[x].href.match("board="+boardid)){ links[x].href = to; } } } } redirectBoard("general","index.cgi?action=home"); //--></script>
Just use it like redirectBoard("boardid","newlink"); Main Footer
|
|