/ Published in: JavaScript
URL: hs_hide_counters.js
This small javascript hides the table that holds statistical counters on hotdog.hu profile pages [footer part].
Expand |
Embed | Plain Text
<script language="javascript"> window.onload = function() { var tables = document.getElementsByTagName('table'); for (var i = tables.length-1; i >= 0; i--) { if (tables[i].width == 1000) { tables[i].style.display = 'none'; return; } } } </script>
You need to login to post a comment.
