Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var win_doc = window.opener.document;
if (win_doc.getElementById('txtPrimChargeUnit')) {
var txt_el = win_doc.getElementById('txtPrimChargeUnit');
txt_el.value = (units=='null' ? '1' : units);
}
Sorry I don't remember what it is called, LOL.
var win_doc = window.opener.document;
if (win_doc.getElementById('txtPrimChargeUnit')) {
var txt_el = win_doc.getElementById('txtPrimChargeUnit');
if (units == 'null') {
txt_el.value = '1';
}
else {
txt_el.value = units;
}
}