Resizable Table Columns GM Demo

By gollum Last update May 21, 2008 — Installed 76 times. Daily Installs: 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0
// ==UserScript==
// @name           Resizable Table Columns GM Demo
// @description   Demonstate resizable table columns
// @include       http://icant.co.uk/csstablegallery/
// @include       http://moronicbajebus.com/wordpress/wp-content/cssplay/reformat-table/index.html
// @include       http://www.webtoolkit.info/demo/javascript/scrollable/demo.html
// ==/UserScript==

var tbls = document.getElementsByTagName("table");
for (var i=0; i < tbls.length; i++) {
  if (tbls[i].hasAttribute("class")) {
    tbls[i].className += " resizable";
  } else {
    tbls[i].className = "resizable";
  }
}