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
Since today is Income Tax Day in the United States, the day to which all good American taxpayers aspire to hold out to before paying any more taxes than they have to, we thought we'd look at the charitable donation tax deduction to see if that might be something that makes sense for you.
After all, what if you would have been better off having a garage sale last year, rather than donating all that stuff to charity?
To find out what the benefit is to you where your taxes are concerned, enter the amount of the charitable donations you might claim on your taxes in our tool below and also enter your marginal tax rate, which is the official income tax bracket to which you belong as an American taxpayer. You can find out which bracket that is by seeing where your Adjusted Gross Income (and today, of all days, is the day you actually know what that number is) puts you according to your tax filing status in the table below, which we borrowed from Bargaineering for 2012:
Tax Bracket | Single | Married Filing Jointly | Head of Household |
10% Bracket | $0 – $8,700 | $0 – $17,400 | $0 – $12,400 |
15% Bracket | $8,701 – $35,350 | $17,401 – $70,700 | $12,401 – $47,350 |
25% Bracket | $35,351 – $85,650 | $70,701 – $142,700 | $47,351 – $122,300 |
28% Bracket | $85,651 – $178,650 | $142,701 – $217,450 | $122,301 – $198,050 |
33% Bracket | $178,651 – $388,350 | $217,451 – $388,350 | $198,051 – $388,350 |
35% Bracket | $388,350+ | $388,350+ | $388,350+ |
Now that you know where you stand, enter your numbers in our tool below and we'll tell you how much being charitable pays on your taxes:
The results in our tool represent how much lower your federal income taxes are as a result of your charitable donations. If you think you could have picked up more money than that from having a garage sale, or say selling your stuff on craiglist or eBay, after taking the additional time and expense associated with any of these activities, then you know which option will work best for your bottom line next year.
If that turns out to be charity, and you're looking for good causes, here are four that we support, each of which seeks to fill very different needs:
And if you're wondering how much the stuff you might donate to a charity might be worth, the Salvation Army's donation value guide is an invaluable resource.
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.