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 happens when the long-term unemployed are suddenly cut off from being able to cash in on the federal government's extended unemployment benefits program?
That's the case for millions of Americans who have been unemployed for 27 weeks or longer, for whom the federal government's extended unemployment benefits program expired after 28 December 2013.
Now without that financial assistance for several months, and therefore being highly motivated to find work to replace their lost income from unemployment benefits, we wondered how successful those individuals have been.
Early reports indicate that very little has changed for the employment prospects of the long-term unemployed, at least through the first month of their no longer having unemployment benefits, but what has changed would seem to have changed for the better. Here's an example from Illinois, where 74,000 people lost extended unemployment benefits after the program expired on 28 December 2013:
One month later, 64,000 or 86 percent, still were without work, according to an Illinois Department of Employment Security analysis released today.
With 14% of the long-term unemployed in Illinois having found jobs in just one month according to the state's official statistics, Illinois saw a rate of improvement that's notably better than the 10% to 11% rate of new hiring success that studies indicate is typical for those who have been unemployed for 27 weeks or longer in recent years. That's also remarkable in that January 2014 saw extremely cold winter weather disrupt much of Illinois' economy, costing it billions of dollars.
However, that's only after one month after their extended unemployment benefits expired. The average dedicated job search ranges between three and six months in duration, so we wouldn't necessarily expect much of a change in new-hire statistics for the long-term unemployed after that short a period of time.
We'll have to watch how that continues to play out.
Labels: jobs
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.