This post is member-only content. Enjoy it by logging in. if you're not an NTPA member yet, this is the perfect excuse to join! Username Password Remember Me Forgot...
document.addEventListener('click', function(e) {
var btn = e.target.closest('.open-support-chat');
if (btn) {
e.preventDefault();
var toggle = document.getElementById('ntpa-chat-toggle');
if (toggle) toggle.click();
}
});