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're following up our look at the payroll and income tax withholding plight of Single tax filers today with a look at the plight of those who have their income taxes withheld at the IRS' initial 2012 married tax rates:
Once again, we're comparing the initial tax withholding rates for 2012 against those that applied in 2010, the last year before the employee's portion of the Social Security FICA payroll taxes of 6.2% of the employee's income was "temporarily" reduced to 4.2%.
What we find is that the benefits of extending the Social Security payroll tax cut into 2012 is limited to roughly 51% of those who might choose the Married filing status for their federal tax withholding, namely those whose incomes might fall between $7,900 and $78,800.
For all practical purposes, no individual who has their taxes withheld under the Married filing status whose income equals or exceeds $78,800 can expect to see any meaningful increase in their take-home pay with respect to what they might have done under the tax withholding rules of 2010. The increase in the income tax withholding rates will offset the reduction in they might otherwise see from the payroll tax cut.
In the chart above, we've used two different shading levels to indicate the range of incomes for which the 2.0% income surtax incorporated into the December 2011 temporary payroll tax cut extension might apply.
The lighter gray zone indicates the incomes where a married individual's income may be affected by the surtax while the darker gray zone indicates the incomes where a married couple will definitely be exposed to the surtax (since married filers combine the incomes of two people, it's possible for their combined income to be above the $110,100 level, yet still not be individually subject to the new 2.0% surtax.)
All in all, we're not sure it's worth forcing Social Security to run more deeply in the red for the sake putting a smidgen more take-home money into just 51-53% of American income earners' paychecks. It would benefit way more people, and put way more disposable income into the economy, if the federal government would let the temporary Social Security payroll tax cut expire and cut regular income and withholding tax rates across the board by 2-3% instead.
But if nothing else, at least we now know that President Obama's definition of who is "rich" really starts at $37,500 for single tax filers and $78,800 for married tax filers.
Internal Revenue Service. Payroll Tax Cut Temporarily Extended into 2012. IRS-2011-124. 23 December 2011.
Internal Revenue Service. Early Release Copies of the 2010 Percentage Method Tables for Income Withholding. Notice 1036. Released December 2011.
Internal Revenue Service. Early Release Copies of the 2010 Percentage Method Withholding and Advance Earned Income Credit Payment Tables. Notice 1036. Released November 2009.
Internal Revenue Service - Statistics of Income Division. 2009 Individual Complete Report (Publication 1304), Table 1.2 - All Returns: Adjusted Gross Income, Exemptions, Deductions, and Tax Items: Size of Adjusted Gross Income and Marital Status. [Excel Spreadsheet]. Accessed 2 January 2012.
Labels: taxes
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.