Hotdog.hu - hide counters


/ Published in: JavaScript
Save to your folder(s)

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


Copy this code and paste it in your HTML
  1. <script language="javascript">
  2. window.onload = function()
  3. {
  4. var tables = document.getElementsByTagName('table');
  5. for (var i = tables.length-1; i >= 0; i--)
  6. {
  7. if (tables[i].width == 1000)
  8. {
  9. tables[i].style.display = 'none';
  10. return;
  11. }
  12. }
  13. }
  14. </script>

URL: hs_hide_counters.js

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.