How to forbid user copy the information from page by jQuery

How to forbid user copy the information from page by jQuery

  1.     $(document).bind('contextmenu', function() {
  2.         return false;
  3.     });

I only know how to forbid right click, but how to forbid select by jQuery?