/ Published in: JavaScript
This small javascript hides the table that holds statistical counters on hotdog.hu profile pages [footer part].
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<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>
URL: hs_hide_counters.js