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
How much does the government benefit when new jobs are created within a community?
Previously, when we looked at the economic impact of new jobs, we only considered how the economy of a community might change from the addition of jobs added by a single new employer. However, we didn't address the situation where local governments use incentives to attract new employers, where the benefits they bring to a local economy are justified because of the tax revenue those new jobs might generate.
Whether or not those kinds of incentives might make sense for the community depends upon how much additional revenue those jobs bring, which is what we'll explore today.
In doing that, we'll only consider tax revenue generated through income and sales taxes. That means that we're excluding property taxes, since factors other than income can influence the amount of tax revenue generated, and which are also very location dependent (that's a different tool!)
In the tool below, you'll need to enter the number of jobs being contributed by the new employer and the average income for those jobs, along with the sales tax rate for the region where the jobs will be located. You'll also need to enter the average effective federal and state income tax rates that applies for the region, which you can estimate by entering the average income for the new jobs in Neuvoo's state income tax calculator to calculate both the federal and state income tax, then dividing each by the average income of the new jobs to get the rates.
Finally, you'll also need to enter the FICA payroll tax rate that applies for the employees of the new employer, which is currently 7.65%.
Because that's a lot of things to keep track of already, to help keep things simple, we'll only consider the direct jobs contributed by a single employer, without considering the job multiplier effect. If you want to consider that effect, just substitute the relevant income and tax rate information for those additional jobs in the tool below and add it to the total for the new employer's direct jobs.
That's it! Once you have that information, you're ready to plug your numbers into the tool below. If you're reading this article on a site that republishes our RSS news feed, click here to access a working version of this tool!
In the tool above, the default data comes from an example provided by the state of Oklahoma, which we selected because the methodology for finding these estimates was developed for that state by David Penn.
To apply this tool for your region of interest, just find the applicable data and plug it in! As a bonus, the tool will also provide an estimate of the lost tax revenue that might result when a business shuts down or otherwise leaves the region.
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.