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
We've been celebrating our two-year anniversary this week here at Political Calculations, which only partially accounts for our mad tool-posting spree! On Monday, we translated what Amazon.com's ranks mean in terms of number of books sold. On Tuesday, we posted our tool for figuring out how much time you could chop off your loans if you upped your regular payment.
Then, on Wednesday, we put very nearly the entire history of the S&P 500 at your fingertips - everything from the average index value for each month in the stock market index's history through June 2006 to the inflation-adjusted rate of return between any two dates! Big deal? You bet! Here's how Uncle Jack described it:
How would you like to compare any time span for the market with two clicks and get the answers you need with the third click? Sound too easy? Political Calculations has created the coolest, easiest to use tool, and your one stop free blog shop for S&P 500 data dating all the way back to 1926.
Better ad copy than we could ever write! The only alteration we would make would be to change "1926" to "1871". Surprise!
Yesterday, we took advantage of some of our rare spare time and took on the scourge of malaria! We posted two tools in one post that might help public health officials and private relief efforts better direct and target malaria control efforts in the regions of the world where the condition is endemic. Is it possible that we just did more for the impoverished peoples who must cope with the disease than Jeffrey Sachs and/or Angelina Jolie combined? We'll see....
We really have no idea what we're going to take on from one day to the next around here!
And here we are on Friday, all the stuff we did earlier this week means that we're going to push our regular weekly review of the best business, career, management and money-related blog carnivals off to Saturday, because we could use a day off before going back to our regular routine. See you tomorrow!
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.