Untitled

Anonymous
plain_text
07/10/2024 4:58 PM
372 B
17
Indexable
<script>
  function disableselect(e) {
    return false;
  }

  function reEnable() {
    return true;
  }

  document.onselectstart = new Function("return false");

  if (window.sidebar) {
    document.onmousedown = disableselect;
    document.onclick = reEnable;
  }
</script>
Editor is loading...
Leave a Comment