top of page

Dating: Love vs Infatuation

Updated: Apr 6


    Want to read more?

    Subscribe to lifecoachcompassion.com to keep reading this exclusive post.

     
     
     
    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(); } });