{"id":6537,"date":"2023-09-06T22:17:52","date_gmt":"2023-09-06T22:17:52","guid":{"rendered":"https:\/\/www.seiu105.org\/?page_id=6537"},"modified":"2023-10-16T18:59:59","modified_gmt":"2023-10-16T18:59:59","slug":"kpcalculator","status":"publish","type":"page","link":"https:\/\/www.seiu105.org\/es\/kpcalculator\/","title":{"rendered":"Salary Calculator"},"content":{"rendered":"<p class=\"has-text-align-center has-background has-medium-font-size\" style=\"background-color:#fdb716\"><a href=\"https:\/\/www.seiu105.org\/es\/healthcare\/kaiser\/2023-kp-bargaining-updates\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>CLICK HERE TO SEE ALL OF THE KP BARGAINING UPDATES!<\/strong><\/a><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>We have reached a tentative agreement with Kaiser! See the table below for the yearly percentage increases in our agreement<\/p>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\">A\u00d1O 1<\/td><td class=\"has-text-align-center\" data-align=\"center\">6% Increase<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">A\u00d1O 2<\/td><td class=\"has-text-align-center\" data-align=\"center\">5% Increase<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">A\u00d1O 3<\/td><td class=\"has-text-align-center\" data-align=\"center\">5% Increase<\/td><\/tr><tr><td class=\"has-text-align-center\" data-align=\"center\">Year 4<\/td><td class=\"has-text-align-center\" data-align=\"center\">5% Increase<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"has-text-align-center has-medium-font-size\"><strong>PLUS A $1500 RATIFICATION BONUS!<\/strong><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p>To help visualize how much of an increase this is, we&#8217;ve created a simple wage calculator to see how your wages will increase each year under this agreement!<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p style=\"font-size:32px\"><\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Salary Calculator<\/title>\n    <style>\n        body {\n            text-align: center;\n        }\n\n        #result {\n            display: none;\n            justify-content: space-between;\n            font-size: 18px;\n            margin-top: 20px;\n        }\n\n        #result>div {\n            flex-basis: 100%;\n            border: 1px solid #ccc;\n            padding: 10px;\n            text-align: left;\n        }\n\n        #result>div h2 {\n            font-weight: bold;\n            font-size: 90%;\n        }\n\n        ul {\n            list-style-type: none;\n            padding: 0;\n        }\n\n        ul li {\n            margin: 10px 0;\n        }\n\n        #initialSalary {\n            margin-right: 10px;\n        }\n\n        .difference {\n            margin-top: 10px;\n        }\n\n        .difference strong {\n            font-weight: bold;\n        }\n\n        #headerText {\n            text-align: center;\n            margin-top: 20px;\n            font-size: 18px;\n        }\n    <\/style>\n<\/head>\n\n<body>\n    <form id=\"salaryCalculator\" action=\"\">\n        <label for=\"initialSalary\">Please enter your current yearly salary:<\/label>\n        <input type=\"text\" id=\"initialSalary\" required>\n        <br>\n        <br>\n        <input type=\"submit\" value=\"Calculate\">\n    <input type=\"hidden\" name=\"trp-form-language\" value=\"es\"\/><\/form>\n\n    <div id=\"headerText\" style=\"display: none;\">\n        <p>Based on your current salary, here is your projected salary:<\/p>\n    <\/div>\n\n    <div id=\"result\">\n        <div id=\"tentativeAgreement\">\n            <h2>Under our Tentative Agreement!<\/h2>\n            <ul id=\"tentativeAgreementList\"><\/ul>\n            <div class=\"difference\" id=\"tentativeAgreementDifference\"><\/div>\n        <\/div>\n    <\/div>\n\n    <script>\n        document.getElementById(\"salaryCalculator\").addEventListener(\"submit\", function (event) {\n            event.preventDefault();\n\n            const initialSalaryInput = document.getElementById(\"initialSalary\").value;\n            const initialSalary = parseFloat(initialSalaryInput.replace(\/[,$]\/g, ''));\n\n            if (!isNaN(initialSalary)) {\n                let finalSalaryTentativeAgreement = initialSalary;\n\n                const tentativeAgreementList = [];\n\n                for (let i = 0; i < 4; i++) {\n                    \/\/ Calculate Tentative Agreement with specified percentages\n                    if (i === 0) {\n                        finalSalaryTentativeAgreement += (finalSalaryTentativeAgreement * 0.06); \/\/ Year 1: 6% increase\n                    } else {\n                        finalSalaryTentativeAgreement += (finalSalaryTentativeAgreement * 0.05); \/\/ Years 2-4: 5% increase\n                    }\n                    tentativeAgreementList.push(formatAsCurrency(finalSalaryTentativeAgreement));\n                }\n\n                const tentativeAgreementListElement = document.getElementById(\"tentativeAgreementList\");\n                const tentativeAgreementDifferenceElement = document.getElementById(\"tentativeAgreementDifference\");\n                const headerTextElement = document.getElementById(\"headerText\");\n\n                tentativeAgreementListElement.innerHTML = \"\";\n\n                for (let i = 0; i < tentativeAgreementList.length; i++) {\n                    const listItem = document.createElement(\"li\");\n\n                    listItem.textContent = `Year ${i + 1}: ${tentativeAgreementList[i]}`;\n                    tentativeAgreementListElement.appendChild(listItem);\n\n                    \/\/ Add the bonus line after Year 4\n                    if (i === 3) {\n                        tentativeAgreementListElement.innerHTML += `<li>PLUS: A $1,500 RATIFICATION BONUS!<\/li>`;\n                    }\n                }\n\n                \/\/ Calculate and display the difference in Year 4\n                const differenceTentativeAgreement = formatAsCurrency(finalSalaryTentativeAgreement - initialSalary + 1500);\n\n                \/\/ Update the difference message with only the dollar amount in bold\n                tentativeAgreementDifferenceElement.innerHTML = `That's a difference of <strong>${differenceTentativeAgreement}<\/strong> over 4 years!`;\n\n                \/\/ Display the header text\n                headerTextElement.style.display = \"block\";\n\n                \/\/ Display the result section\n                document.getElementById(\"result\").style.display = \"flex\";\n            } else {\n                alert(\"Please enter a valid number for your current yearly salary.\");\n            }\n        });\n\n        function formatAsCurrency(amount) {\n            return \"$\" + amount.toFixed(2).replace(\/\\B(?=(\\d{3})+(?!\\d))\/g, \",\");\n        }\n    <\/script>\n<\/body>\n\n<\/html>\n\n\n\n\n\n<p><\/p>\n\n\n\n<p style=\"font-size:25px\"><\/p>","protected":false},"excerpt":{"rendered":"<p>CLICK HERE TO SEE ALL OF THE KP BARGAINING UPDATES! We have reached a tentative agreement with Kaiser! See the table below for the yearly percentage increases in our agreement Year 1 6% Increase Year 2 5% Increase Year 3 5% Increase Year 4 5% Increase PLUS A $1500 RATIFICATION BONUS! To help visualize how [&hellip;]<\/p>","protected":false},"author":16,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"class_list":["post-6537","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Salary Calculator - SEIU Local 105<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.seiu105.org\/es\/kpcalculator\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Salary Calculator - SEIU Local 105\" \/>\n<meta property=\"og:description\" content=\"CLICK HERE TO SEE ALL OF THE KP BARGAINING UPDATES! We have reached a tentative agreement with Kaiser! See the table below for the yearly percentage increases in our agreement Year 1 6% Increase Year 2 5% Increase Year 3 5% Increase Year 4 5% Increase PLUS A $1500 RATIFICATION BONUS! To help visualize how [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.seiu105.org\/es\/kpcalculator\/\" \/>\n<meta property=\"og:site_name\" content=\"SEIU Local 105\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SEIU105\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-16T18:59:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.seiu105.org\/wp-content\/uploads\/2019\/12\/seiu105-fb.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"1500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@SEIU105\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.seiu105.org\/kpcalculator\/\",\"url\":\"https:\/\/www.seiu105.org\/kpcalculator\/\",\"name\":\"Salary Calculator - SEIU Local 105\",\"isPartOf\":{\"@id\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/#website\"},\"datePublished\":\"2023-09-06T22:17:52+00:00\",\"dateModified\":\"2023-10-16T18:59:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.seiu105.org\/kpcalculator\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.seiu105.org\/kpcalculator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.seiu105.org\/kpcalculator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Salary Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/#website\",\"url\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/\",\"name\":\"SEIU Local 105\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/#organization\",\"name\":\"SEIU Local 105\",\"url\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/wp-content\/uploads\/2019\/08\/seiu105-logo-box.jpg\",\"contentUrl\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/wp-content\/uploads\/2019\/08\/seiu105-logo-box.jpg\",\"width\":1500,\"height\":1500,\"caption\":\"SEIU Local 105\"},\"image\":{\"@id\":\"https:\/\/live-seiu-local-105.pantheonsite.io\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SEIU105\",\"https:\/\/x.com\/SEIU105\",\"https:\/\/www.youtube.com\/channel\/UCi4D3lDRABd_KewLDS74_cQ\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Salary Calculator - SEIU Local 105","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.seiu105.org\/es\/kpcalculator\/","og_locale":"es_MX","og_type":"article","og_title":"Salary Calculator - SEIU Local 105","og_description":"CLICK HERE TO SEE ALL OF THE KP BARGAINING UPDATES! We have reached a tentative agreement with Kaiser! See the table below for the yearly percentage increases in our agreement Year 1 6% Increase Year 2 5% Increase Year 3 5% Increase Year 4 5% Increase PLUS A $1500 RATIFICATION BONUS! To help visualize how [&hellip;]","og_url":"https:\/\/www.seiu105.org\/es\/kpcalculator\/","og_site_name":"SEIU Local 105","article_publisher":"https:\/\/www.facebook.com\/SEIU105","article_modified_time":"2023-10-16T18:59:59+00:00","og_image":[{"width":2000,"height":1500,"url":"https:\/\/www.seiu105.org\/wp-content\/uploads\/2019\/12\/seiu105-fb.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@SEIU105","twitter_misc":{"Tiempo de lectura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.seiu105.org\/kpcalculator\/","url":"https:\/\/www.seiu105.org\/kpcalculator\/","name":"Salary Calculator - SEIU Local 105","isPartOf":{"@id":"https:\/\/live-seiu-local-105.pantheonsite.io\/#website"},"datePublished":"2023-09-06T22:17:52+00:00","dateModified":"2023-10-16T18:59:59+00:00","breadcrumb":{"@id":"https:\/\/www.seiu105.org\/kpcalculator\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.seiu105.org\/kpcalculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.seiu105.org\/kpcalculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/live-seiu-local-105.pantheonsite.io\/"},{"@type":"ListItem","position":2,"name":"Salary Calculator"}]},{"@type":"WebSite","@id":"https:\/\/live-seiu-local-105.pantheonsite.io\/#website","url":"https:\/\/live-seiu-local-105.pantheonsite.io\/","name":"SEIU Local 105","description":"","publisher":{"@id":"https:\/\/live-seiu-local-105.pantheonsite.io\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/live-seiu-local-105.pantheonsite.io\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/live-seiu-local-105.pantheonsite.io\/#organization","name":"SEIU Local 105","url":"https:\/\/live-seiu-local-105.pantheonsite.io\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/live-seiu-local-105.pantheonsite.io\/#\/schema\/logo\/image\/","url":"https:\/\/live-seiu-local-105.pantheonsite.io\/wp-content\/uploads\/2019\/08\/seiu105-logo-box.jpg","contentUrl":"https:\/\/live-seiu-local-105.pantheonsite.io\/wp-content\/uploads\/2019\/08\/seiu105-logo-box.jpg","width":1500,"height":1500,"caption":"SEIU Local 105"},"image":{"@id":"https:\/\/live-seiu-local-105.pantheonsite.io\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SEIU105","https:\/\/x.com\/SEIU105","https:\/\/www.youtube.com\/channel\/UCi4D3lDRABd_KewLDS74_cQ"]}]}},"_links":{"self":[{"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/pages\/6537","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/comments?post=6537"}],"version-history":[{"count":34,"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/pages\/6537\/revisions"}],"predecessor-version":[{"id":6830,"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/pages\/6537\/revisions\/6830"}],"wp:attachment":[{"href":"https:\/\/www.seiu105.org\/es\/wp-json\/wp\/v2\/media?parent=6537"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}