inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Jan 29, 2006 14:46:26 GMT -8
Global FooterThis code adds a 'New Thread' button next to the 'Reply' button in threads. Just edit the bold with the URL of your 'New Thread' image <script type="text/javascript"> <!-- /* 'new thread' button next to reply */ if(location.href.match(/board=(\w+)&(action|thread)=/)) { var img = document.getElementsByTagName('img'); for(l=0; l<img.length; l++) { if(img[l].alt == '[Reply]') { img[l+1].src = 'New Thread Image URL'; img[l+1].alt = img[l+1].title= '[New Thread]'; img[l+1].parentNode.href = '/index.cgi?&board='+RegExp.$1+'&action=post'; } } } //--> </script>
|
|