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
Political Calculations has previously looked at the impact that having a bachelors or higher degree has upon one's lifelong earnings, but did you ever wonder what the best jobs available are for people who don’t have bachelor degrees?
Not long ago, Jobs for the Future, a non-profit "research, consulting and advocacy organization," published its view of "The Right Jobs" (free, e-mail address registration required), its study of U.S. labor statistics (published by the Bureau of Labor Statistics), in which it found the highest paying, highest demand occupations that did not require a college degree. Each of the professions listed qualified for the list by having an annual income of $25,000 or more, having a demand of at least 20,000 openings per year, and offering at least some chance of career advancement.
The list below is excerpted from a Knight-Ridder article by Banks Albach, and is presented using a dynamic table. You may click on any of the column headings to sort the table's data from lowest to highest or vice-versa according the heading selected:
Best Jobs without Bachelor Degrees in 2005 |
---|
Profession | Income: Low End | Income: High End | Annual Job Openings | Minimum Education Requirement |
---|---|---|---|---|
Registered Nurse | 40000 | 57500 | 110119 | Associate degree in nursing. |
Licensed practical nurse | 26400 | 37000 | 29480 | 11th grade math and reading. 12 month academic training program. |
Customer Service Representative | 20960 | 33540 | 74137 | High school or college plus employer training. |
Automotive Mechanic | 22080 | 41270 | 42542 | High school. 6 months to 2 years training, costing $3,000 to $24,000 USD. |
Computer Support Specialist | 29760 | 51680 | 21579 | Entry level skills. Vocational school certifications and degrees. |
Carpenter | 26180 | 45560 | 31917 | High school. 12 week pre-apprentice training and 3 to 4 year apprenticeship. |
Electrician | 31100 | 55120 | 28485 | High school. 12 week pre-apprentice training and 3 to 4 year apprenticeship. |
Plumber | 30540 | 53820 | 20511 | High school. 12 week pre-apprentice training and 3 to 4 year apprenticeship. |
Commercial Truck Driver | 26020 | 41610 | 62517 | High school. 6 to 12 month training program. |
Commercial Bus Driver | 21870 | 39510 | 25000 | High school. 6 to 12 month training program. |
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.