|
Post by Reverse Blade on Jun 29, 2007 11:35:30 GMT -5
Crossbrowser: yes Preview: none Description: Deletes the mark as read button but not the whole bar. I was trying something new that I had learned (removeChild() and it's different because it doesn't delete the whole bar if someone didn't want it deleted Goes In: Main Footer <script> var d=document.getElementsByTagName('img'); for(t=0;t<d.length;t++) { if(d[t].border=='0' && d[t].alt=='Mark All Boards Read') { d[t].parentNode.removeChild(d[t]); } } </script>
|
|