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
Life happens. And when it happens, it will often come with an unexpected price tag. Is that extra bill something you can afford to pay? Even on top of all your other bills?
Wouldn't it be nice if you already had the cash to pay that unexpected bill? Without having to borrow any money from family, friends, professional lenders, or your neighborhood loan shark? Or set up a GoFundMe fundraiser? Or count on winning the next lottery drawing?
If it's not obvious already, having cash saved and ready to use in case of emergency is a real solution to the money problems posed by potentially unexpected life events.
But there's a catch. In order to have a supply of cash available when an unexpected event happens, you have to have saved it first. According to Bankrate, just 44% of Americans have the savings to pay an unexpected bill of $1,000. If saving was as easy as banks make it sound, wouldn't that percentage be much higher? Right off the bat, 56% of Americans would seem to agree that saving is harder than it sounds.
To Bankrate's credit, they do suggest two basic steps for establishing up an emergency savings fund, including:
If you don't like banks and are willing to give up earning interest on your savings, you could cut the bank out of the picture and save cash in a piggy bank or in a safe at home. Both of which have their own risks, such as your kids helping themselves to what's in your piggy bank or you forgetting the combination to the safe! But there are some new options for setting up an emergency savings fund you might want to consider that may be available to you through your job.
If your employer offers a 401(k) program that is managed by Fidelity, you may have access to Fidelity's new Goal Booster program. This is a new program that automatically combines payroll deduction with savings accounts that are directly linked to your specific savings goals but are separate from your retirement savings. That means you can take out money from them when you need to without paying any early withdrawal hardship penalties. Other employers are starting to provide access to similar programs managed by firms like SecureSave and Sunny Day Fund.
What we haven't yet discussed is how much to save for an emergency. That's a different topic for a different day, which we'll get around to covering in Part 2!
Image credit: Piggy bank on a pink background image by Quince Media on Pixabay. Creative Commons CCO 1.0 Universal Public Domain Dedication.
Labels: personal finance
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.