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
This is the last time that we're going to feature an updated version of the following chart, showing the change in the number of employed Americans by age group since the level of total employment peaked in the U.S. just ahead of the so-called Great Recession.
Here's what we've learned after seven years of tracking this data, where we've focused upon teens (Age 16-19), young adults (Age 20-24) and adults (Age 25 and older):
Looking at the present employment situation for teens and young adults, we find that there hasn't been any meaningful improvement in their employment prospects since October 2014. Meanwhile, U.S. adults have continued to gain jobs. The number of employed teens has held at a level that is 1.15 million below their November 2007 level, while the number of employed young adults has just dropped back underwater after having briefly risen above it.
That situation seems somewhat out of whack, especially as oil and gasoline prices in the U.S. have continued to fall, however we should note that 21 states in the U.S. were set to increase their minimum wages in January 2015. Nine of these states had relatively small minimum wage hikes, as they only adjusted their minimum wage to account for the rate of inflation. The other thirteen states increased their minimum wages by a larger percentage.
Meanwhile, the state of California imposed a very large hike in its minimum wage in July 2014. Unlike nearly all other states, teens in California have seen no improvement in their employment figures as a result of the entire U.S. economy being stimulated from falling oil prices.
We think those state level minimum wage hikes are limiting the gains that teens and young adults would otherwise be seeing as a result of Americans being able to benefit from not having to pay so much for oil and gasoline. That situation should ease somewhat as inflation helps wash out the effect of the state-level minimum wage hikes, but will ultimately be limited because of the negative impact of the next round of state level minimum wage increases that will be on tap for 2016.
It shouldn't take an economic detective to point out the obvious, but apparently, it does, because some people still haven't learned anything over all these years.
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.