Please enter your monthly usage (kWh) which can be found on your utility bill and enter it into the green box in the upper right-hand corner below. The calculator will tabulate your supply charges for the month in comparison to PSE&G’s Basic Generation Service.
https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
ENTER MONTHLY KWH:
|
PRODUCT OPTIONS |
RATE |
Monthly Supply Cost |
“renewableNB” Default Product No Action Required |
$0.11386 |
$ |
“renewableNB PREMIUM GREEN” 100% Renewable Energy
|
$0.12893 |
$ |
|
|
PSE&G RATES, Summer 2019 |
|
|
RESIDENTIAL (kWh less than or equal to 600) |
$0.126719 |
$ |
RESIDENTIAL (kWh greater than 600) |
$0.135878 |
$ |
$(document).ready(function () {
$(‘#txtKwh’).keyup(function (e) {
var txt = $(‘#txtKwh’).val();
if (isNaN(txt) == false) {
var ns21 = document.getElementById(“s2_1”).innerText;
var ns22 = ns21 * txt;
ns22 = Number(ns22).toFixed(2);
document.getElementById(“s2_2”).innerHTML = ns22;
var ns31 = document.getElementById(“s3_1”).innerText;
var ns32 = ns31 * txt;
ns32 = Number(ns32).toFixed(2);
document.getElementById(“s3_2”).innerHTML = ns32;
var ns41_rate_under600 = document.getElementById(“s4_1”).innerText;
var ns41_rate_over600 = document.getElementById(“s4_3”).innerText;;
var ns4_under600 = 0;
var ns4_over600 = 0;
if(txt>600)
{
ns4_under600 = ns41_rate_under600 * 600;
ns4_over600 = ns41_rate_over600 * (txt-600);
}
else
{
ns4_under600 = ns41_rate_under600 * txt;
ns4_over600 = 0;
}
ns4_under600 = Number(ns4_under600).toFixed(2);
ns4_over600 = Number(ns4_over600).toFixed(2);
var ns42 = ns4_under600 + ns4_over600;
ns42 = Number(ns42).toFixed(2);
document.getElementById(“s4_2”).innerHTML = ns4_under600;
document.getElementById(“s4_4”).innerHTML = ns4_over600;
}
});
});
Like this:
Like Loading...