top of page
Home
Book Online
Blog
Videos
Financial Book
Meet The Team
Shop
Log In
Schedule your service
Coping with Grief
Check out our availability and book the date and time that works for you
bottom of page
// Disable Right Click document.addEventListener('contextmenu', event => event.preventDefault()); // Disable Text Selection document.addEventListener('selectstart', event => event.preventDefault()); // Disable Keyboard Copy (Ctrl+C), Cut (Ctrl+X), Paste (Ctrl+V) document.addEventListener('keydown', function(event) { if (event.ctrlKey && (event.key === 'c' || event.key === 'x' || event.key === 'v')) { event.preventDefault(); } });