Unfortunately, this alert is no longer active. Click here if you are not redirected to our list of active alerts in the next 10 seconds.
function startTimeout() {
setTimeout(function () {
clearSensitiveFields();
}, 480000);
}
function resetTimeout() {
setTimeout(keepAliveString, 480000);
}
function clearSensitiveFields() {
const elements = document.querySelectorAll('input[type="text"], textarea, select');
elements.forEach(element => {
if (isElementVisible(element)) {
if (element.type === "checkbox" || element.type === "radio") {
element.checked = false;
} else {
element.value = "";
}
}
});
}
function isElementVisible(element) {
return element.offsetWidth > 0 || element.offsetHeight > 0 || element.getClientRects().length > 0;
}
startTimeout();
Unfortunately, this alert is no longer active. Click here if you are not redirected to our list of active alerts in the next 10 seconds.