M
M
Martyer2015-04-02 08:07:46
css
Martyer, 2015-04-02 08:07:46

How can I disable highlighting text and disable right-clicking on a site in the flash program area?

How can I disable highlighting text and disable right-clicking on a site in the flash program area?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Sergey Melnikov, 2015-04-02
@Martyer

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

[].forEach.call(document.querySelectorAll(".no-context"), function(element) {
  element.addEventListener("contextmenu", function(event) {
    event.preventDefault();
  });
});

A
Anton Nagaets, 2015-04-02
@gr1mm3r

F12 no one can ban.

M
Mikhail Lyalin, 2015-04-02
@mr_jok

useless - you can still get access

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question