to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
What wisdom can we learn from the past titans of industry? Better yet, what could we learn from the not-so-great among the CEOs of the past? To find out, we've drawn a random sampling of almost-great business knowledge from Simpson's quotations*. Why you ask? We don't know - it just seemed like a good idea at the time.
Market research can establish beyond the shadow of a doubt that the egg is a sad and sorry product and that it obviously will not continue to sell. Because after all, eggs won’t stand up by themselves, they roll too easily, are too easily broken, require special packaging, look alike, are difficult to open, won’t stack on the shelf.
- Robert Pliskin
Vice President, Benton & Bowles
In fact, the only good thing about eggs is that the producers work for chicken feed....
It is our job to make women unhappy with what they have.
- B. Earl Puckett
President, Allied Stores
Because, as men already know, they're not unhappy enough with what they have already.
We hope this car will be less labor intensive, less material intensive, less everything intensive than anything we have done before.
- Roger B. Smith
Chairman, General Motors, on GM's new Saturn in 1985
As it happened, GM's Saturn proved to also be less sales intensive and less profit intensive than just about anything GM did before, so it appears to have wildly surpassed Roger Smith's grandest ambitions....
Smell that! That’s gasoline you smell in there. You can’t buy any perfume in the world that smells as sweet.
- William K. Whiteford
Chairman, Gulf Corporation
And at today's price of roughly $3.00 per U.S. gallon, it's a bargain compared to other perfumes! Let's get Earl Puckett working on this one right away!
People want economy and they will pay any price to get it.
- Lee Iacocca
Ford VP and future CEO of Chrysler, in 1974
Now, if only they could buy it from a U.S. automaker....
* That's James B. Simpson's Contemporary Quotations. Homer J. Simpson's contemporary quotations are quite, quite different....
Labels: random thoughts
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.