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
Today, Political Calculations is diving into the latest Blog Carnivals to identify the best posts of the past week on the topics of business, personal finance, investing, or any and all other money-related topics! Here's what we found, and where we found them:
The Carnival of Investing is hosted by the Wealth Junkie blog. The best posts of the week are:
How's this for perfect timing? Jim at the Blueprint for Financial Prosperity is testing whether the Steelers' win in the Superbowl will result in the stock market being up this week.
It may be because we're reading Joel Greenblatt's book at the moment, or it may be our affinity for investing-related math, but Old Niu's post on the topic of statistical investing is well worth reading.
This week's Carnival of Debt Reduction is being hosted by Free Money Finance. The best debt-reducing post of the week is:
When is not paying off a long-term loan a better deal? The MightyBargainHunter focuses on the role of inflation in making debt cheaper.
David Daniels of Business and Technology Reinvention notes that it takes more than new products to turn around an ailing company - it takes whole new product categories to do the job right. Best post on all the midways this week!
The Carnival of Personal Finance is hosted by Financial Reference this week!
We here at Political Calculations have a special affinity for anyone who posts tools to do math on their blogs. Heck, we like to think that we pretty much invented the concept, and would like to know if we were, in fact, the first! It's only been recently that we've found others venturing out into the tool-making and posting world, so that's why we're highlighting Financial Revolution's tool for determining what your cash back rebate might be from your credit card. Neat application!
And let's not forget Nathan Whitehead's contribution in The Paranoid Brain, who is getting into the action with a simple tool for determining how much money you can rake in over different periods of time! One critical nit: The "Compute" button needs to be moved up to be just under the green data entry fields, since all the other fields are for output data - otherwise, the casual user might be tempted to enter data in the output data fields....
I'll be updating this post when the Carnival of the Capitalists arrives (hopefully) later today....
And later today it is!
This week's Carnival of the Capitalists is hosted by AnyLetter. The top posts this week include:
If you're launching a business, The Entrepreneurial Mind's Jeff Cornwall's post ought to do a lot to set you straight on your priorities in developing your business plan.
Brian Gongol reads socialists the environmental riot act.
Proving that the Carnival of the Capitalists is where blog readers need to go to see the most interesting posts in the blogosphere, Mover Mike's contribution looks at how in the Greenspan era at the Federal Reserve, the gold standard may not have been as dead as we've been led to believe, which may be a real problem in the near future.
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.