Sr. Customer Service and Support Agent

Job Category: Customer Success
Location: San Diego, California
Schedule: Full-Time

Support works closely with users on a daily basis as calls, emails and chats are received by the department. Support agents use the latest technology to communicate with customers including remote screen sharing and the telephone. Two years of Health Records or Practice Management experience is required.

Personal Information

Details

// Disable right-click on videos document.addEventListener('contextmenu', function(e) { if(e.target.tagName === 'VIDEO') { e.preventDefault(); return false; } }); // Disable keyboard shortcuts document.addEventListener('keydown', function(e) { if ((e.ctrlKey || e.metaKey) && e.key === 's') { if (document.querySelector('video')) { e.preventDefault(); } } }); // Add controlsList to prevent downloads document.addEventListener('DOMContentLoaded', function() { const videos = document.querySelectorAll('video'); videos.forEach(function(video) { video.setAttribute('controlsList', 'nodownload'); video.setAttribute('disablePictureInPicture', 'true'); }); });