inherit
100824
0
May 13, 2012 5:37:49 GMT -8
Michael
14,585
March 2007
wrighty
|
Post by Michael on Aug 5, 2008 15:49:28 GMT -8
Edit the part in [red]red[/red] to contain your 'locked' icon url (just need the last part!). This code will move all of the locked threads to the bottom of the thread listings on that page. <script> /*Move Locked Threads To Bottom Created By Wrighty Do Not: Rip, Repost or Claim*/
var l = /[red]locked.gif[/red]/
if(location.href.match(/board=/) && !location.href.match(/action=display/)){ var d = document.getElementsByTagName('tr'); var y = d.length; while(y--){ if(d[y].cells[0].colSpan == '7' && d[y].cells[0].className == 'titlebg'){ var a = d.length; while(a--){ if(d.cells[0].innerHTML.match(l) && d.cells[0].className == 'windowbg2'){ d[y].parentNode.insertBefore(d, d[y]) } } break; } } } </script>Global Footer
|
|