top of page
Log In
Home
Book Online
Blog
Videos
Financial Book
Meet The Team
Shop
Life Coach Compassion
Schedule your service
Know Your Credit
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(); } });