Return to Snippet

Revision: 49156
at July 17, 2011 19:21 by Oroborus9


Initial Code
<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>

Initial URL
hs_hide_counters.js

Initial Description
This small javascript hides the table that holds statistical counters on hotdog.hu profile pages [footer part].

Initial Title
Hotdog.hu - hide counters

Initial Tags
javascript, js

Initial Language
JavaScript